:root {
  --blue-deep: #0a3161;
  --blue-mid: #1e4f7a;
  --blue-soft: #f5f7fa;
  --us-red: #b31942;
  --text-main: #14283c;
  --text-muted: #5f7387;
  --white: #ffffff;
  --line: rgba(10, 42, 67, 0.14);
  --line-strong: rgba(10, 42, 67, 0.22);
  --hover-soft: cubic-bezier(0.22, 0.74, 0.2, 1);
  --hover-spring: cubic-bezier(0.18, 0.86, 0.28, 1.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--text-main);
  background: var(--blue-soft);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(7, 24, 44, 0.46);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
  z-index: 15000;
}

body.menu-open-mobile {
  overflow: hidden;
}

body.menu-open-mobile::before {
  opacity: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 16000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.top-bar {
  background: linear-gradient(90deg, var(--blue-deep) 0%, #0d3f79 72%, #86203e 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 46px;
  padding: 0 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: nowrap;
}

.contact-cluster {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.contact-item {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.contact-item:hover,
.contact-item:focus-visible {
  color: #ffffff;
  outline: none;
}

.contact-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.38);
}

.lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.18rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(8, 39, 74, 0.5);
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(6px);
}

.lang-switch::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
  opacity: 1;
}

.lang-switch::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03));
  pointer-events: none;
}

.lang-switch > * {
  position: relative;
  z-index: 2;
}

.lang-btn {
  min-width: 34px;
  border: none;
  border-radius: 999px;
  padding: 0.24rem 0.5rem;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.lang-btn:hover,
.lang-btn:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  outline: none;
}

.lang-btn.is-active {
  background: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.lang-switch[data-lang-theme="es"] .lang-btn[data-lang-btn="es"].is-active {
  background:
    linear-gradient(
      180deg,
      rgba(176, 45, 64, 0.54) 0%,
      rgba(176, 45, 64, 0.54) 30%,
      rgba(204, 164, 64, 0.58) 30%,
      rgba(204, 164, 64, 0.58) 70%,
      rgba(176, 45, 64, 0.54) 70%,
      rgba(176, 45, 64, 0.54) 100%
    );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.lang-switch[data-lang-theme="en"] .lang-btn[data-lang-btn="en"].is-active {
  background:
    linear-gradient(90deg, rgba(44, 60, 112, 0.55) 0 34%, transparent 34%),
    repeating-linear-gradient(
      180deg,
      rgba(176, 50, 69, 0.46) 0%,
      rgba(176, 50, 69, 0.46) 10%,
      rgba(245, 248, 255, 0.14) 10%,
      rgba(245, 248, 255, 0.14) 20%
    );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.lang-notice {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  z-index: 17000;
  width: min(680px, calc(100vw - 1.2rem));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lang-notice.lang-notice-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.lang-notice-inner {
  background:
    linear-gradient(96deg, rgba(8, 45, 89, 0.95), rgba(28, 81, 134, 0.9) 55%, rgba(153, 30, 66, 0.84)),
    #0f3c73;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(5, 25, 48, 0.35);
  padding: 0.72rem 0.88rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.72rem;
}

.lang-notice-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.35;
}

.lang-notice-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.lang-notice-btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.38rem 0.75rem;
  font-size: 0.73rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.lang-notice-btn:hover,
.lang-notice-btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.lang-notice-btn-primary {
  background: #f8fbff;
  color: #0d315f;
}

.lang-notice-btn-primary:hover,
.lang-notice-btn-primary:focus-visible {
  background: #ffffff;
}

.lang-notice-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.lang-notice-btn-secondary:hover,
.lang-notice-btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.eval-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(140deg, #be1a49, #a9153d);
  border: none;
  border-radius: 14px;
  padding: 0.43rem 0.95rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(98, 11, 41, 0.22);
  transition:
    background-color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.eval-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 46%;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.26) 46%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-140%);
  transition: transform 0.5s ease;
  pointer-events: none;
}

.eval-cta .svg-wrapper-1,
.eval-cta .svg-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.eval-cta svg {
  width: 16px;
  height: 16px;
  display: block;
  transform-origin: center center;
  transform: rotate(0deg);
  transition: transform 0.3s ease-in-out;
}

.eval-cta .eval-cta-label {
  display: block;
  transition: letter-spacing 0.22s ease, text-shadow 0.22s ease;
}

.eval-cta:hover .svg-wrapper {
  animation: none;
}

.eval-cta:hover svg {
  transform: rotate(45deg);
}

.eval-cta:hover,
.eval-cta:focus-visible {
  background: linear-gradient(140deg, #ad1742, #951137);
  transform: translateY(-1px);
  box-shadow: 0 9px 18px rgba(98, 11, 41, 0.34);
  outline: none;
}

.eval-cta:hover::before,
.eval-cta:focus-visible::before {
  transform: translateX(200%);
}

.eval-cta:hover .eval-cta-label,
.eval-cta:focus-visible .eval-cta-label {
  letter-spacing: 0.02em;
  text-shadow: 0 1px 5px rgba(255, 255, 255, 0.2);
}

.eval-cta:active {
  transform: translateY(0);
  box-shadow: 0 5px 12px rgba(98, 11, 41, 0.22);
}

.nav-container {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 104px;
  padding: 0 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.logo-image {
  display: block;
  width: auto;
  height: 92px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s ease;
}

.nav-toggle:hover {
  background: #f9fbfd;
}

.nav-toggle svg {
  height: 28px;
  width: 28px;
  display: block;
  margin: 0 auto;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle .line {
  fill: none;
  stroke: var(--blue-deep);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
  transition:
    stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle .line-top-bottom {
  stroke-dasharray: 12 63;
}

.nav-toggle.nav-toggle-active svg {
  transform: rotate(-45deg);
}

.nav-toggle.nav-toggle-active .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.18rem;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.72rem 1rem;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--blue-deep);
  background: rgba(30, 79, 122, 0.06);
  outline: none;
}

.nav-link:not(.nav-link-cta)::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 7px;
  height: 8px;
  border-bottom: 1.5px solid rgba(179, 25, 66, 0.6);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  opacity: 0;
  transform: scaleX(0.55) translateY(1px);
  transform-origin: left center;
  transition: transform 0.32s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.22s ease;
  pointer-events: none;
}

.nav-link:not(.nav-link-cta):hover::after,
.nav-link:not(.nav-link-cta):focus-visible::after,
.dropdown-trigger[aria-expanded="true"]::after,
.nav-link-active::after {
  opacity: 1;
  transform: scaleX(1) translateY(0);
}

.nav-link-active {
  color: var(--blue-deep);
}

.nav-link-cta {
  background: var(--blue-deep);
  color: #ffffff;
  border-color: transparent;
  border-radius: 10px;
  padding-inline: 1.2rem;
}

.nav-link-cta:hover,
.nav-link-cta:focus-visible {
  background: #082438;
  color: #ffffff;
}

.nav-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.dropdown-arrow {
  transition: transform 0.2s ease;
}

.dropdown-trigger[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: min(680px, 90vw);
  transform: translateX(-50%) translateY(-6px);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 30px rgba(10, 42, 67, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 30;
}

.nav-dropdown.dropdown-open .dropdown-panel,
.nav-dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.dropdown-section {
  padding: 1rem;
  border-right: 1px solid var(--line);
}

.dropdown-section:last-child {
  border-right: none;
}

.dropdown-title {
  margin: 0 0 0.65rem;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.dropdown-item {
  display: block;
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.86rem;
  font-weight: 500;
  border-radius: 8px;
  padding: 0.4rem 0.5rem;
  margin: 0 -0.5rem;
  transition: background-color 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus-visible {
  background: #f1f6fb;
  outline: none;
}

.hero-main {
  position: relative;
  width: 100%;
  min-height: clamp(520px, 76vh, 820px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background:
    linear-gradient(115deg, rgba(8, 38, 72, 0.9), rgba(11, 52, 98, 0.68)),
    url("../img/hero-image.jpg")
      center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 14%, rgba(201, 164, 77, 0.22), transparent 34%),
    radial-gradient(circle at 82% 28%, rgba(72, 145, 202, 0.24), transparent 36%),
    linear-gradient(180deg, rgba(6, 26, 48, 0.3), rgba(6, 26, 48, 0.58));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1360px, 100%);
  margin: 0 auto;
  padding: clamp(2.2rem, 6vw, 4.4rem) 1.2rem;
  color: #ffffff;
  text-align: center;
}

.hero-kicker {
  margin: 0 auto 1.1rem;
  display: inline-block;
  padding-bottom: 0.4rem;
  border-bottom: 3px solid rgba(201, 164, 77, 0.95);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.93);
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(2.6rem, 9vw, 8rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-wrap: balance;
  text-shadow: 0 8px 28px rgba(7, 24, 43, 0.38);
}

.hero-copy {
  margin: 1.25rem auto 0;
  max-width: 64ch;
  font-size: clamp(0.98rem, 1.65vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.7rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 14px;
  padding: 0.96rem 2.1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.hero-btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f7da8a, #d6a646 62%, #b98424 100%);
  color: #08305f;
  box-shadow: 0 10px 24px rgba(109, 72, 10, 0.36);
}

.hero-btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 46%;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.26) 46%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-140%);
  transition: transform 0.5s ease;
  pointer-events: none;
}

.hero-btn-primary:hover,
.hero-btn-primary:focus-visible {
  background: linear-gradient(135deg, #ffe5a4, #dfb150 62%, #c08b2f 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(109, 72, 10, 0.44);
  outline: none;
}

.hero-btn-primary:hover::before,
.hero-btn-primary:focus-visible::before {
  transform: translateX(200%);
}

.passport-section {
  position: relative;
  padding: clamp(2.6rem, 7vw, 4.6rem) 1rem clamp(2.2rem, 6vw, 4.8rem);
  background:
    radial-gradient(circle at 10% 0, rgba(201, 164, 77, 0.08), transparent 42%),
    linear-gradient(180deg, #f5f7fa 0%, #eef3f9 100%);
  overflow: visible;
}

.passport-ribbons {
  position: absolute;
  top: 0;
  width: 100vw;
  margin: 0;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  z-index: 9000;
  isolation: isolate;
  pointer-events: none;
}

.passport-center-hanger {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 136px;
  height: 108px;
  z-index: 8998;
  pointer-events: none;
}

.passport-center-hanger-pin {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 9px;
  height: 10px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, #2b84da 0%, #1464b5 72%, #0a3e7c 100%);
  box-shadow: 0 2px 6px rgba(7, 34, 65, 0.24);
}

.passport-center-hanger-stem {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 92px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(15, 78, 142, 0.8), rgba(10, 49, 97, 0.32));
}

.passport-center-hanger-bar {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 86px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 1px;
  background: linear-gradient(180deg, #0f5a9f 0%, #0a3f7a 100%);
  box-shadow: 0 2px 6px rgba(7, 34, 65, 0.2);
}

.passport-center-hanger-bar::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -6px;
  width: 10px;
  height: 6px;
  transform: translateX(-50%);
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, #1a6dbb 0%, #0f579b 100%);
}

.visa-ribbon {
  position: absolute;
  left: -70vw;
  width: 240vw;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  color: #eaf3fc;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 5px rgba(6, 24, 45, 0.35);
  white-space: nowrap;
  overflow: hidden;
  opacity: 1;
  z-index: 9001;
  box-shadow: none;
}

.visa-ribbon-top {
  transform: rotate(4.9deg) translateY(-13px);
  background:
    linear-gradient(95deg, #093163, #114078 44%, #175293);
  z-index: 9002;
}

.visa-ribbon-bottom {
  transform: rotate(-4.9deg) translateY(13px);
  background:
    linear-gradient(95deg, #0e3d72, #082d5a 50%, #8f1f55);
  z-index: 9001;
}

.visa-ribbon-track {
  width: max-content;
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.44rem;
  padding: 0 1.1rem;
  flex: 0 0 auto;
}

.visa-ribbon-track + .visa-ribbon-track {
  margin-left: 0.15rem;
}

.visa-ribbon-item {
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #eaf3fc;
}

.visa-ribbon-item-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.visa-ribbon-item-logo img {
  height: 16px;
  width: auto;
  opacity: 0.64;
  filter: saturate(1.05) brightness(1.08);
}

.visa-ribbon-sep {
  opacity: 0.58;
  font-size: 0.86rem;
  transform: translateY(-1px);
}

.passport-shell {
  width: min(1180px, 100%);
  margin: 64px auto 0;
  border: 1px solid rgba(10, 49, 97, 0.16);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(10, 49, 97, 0.1);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
  padding: clamp(1rem, 2.8vw, 1.6rem);
  position: relative;
  overflow: hidden;
  z-index: 6;
}

.passport-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2.1rem;
  right: 2.1rem;
  border-top: 2px dashed rgba(10, 49, 97, 0.18);
  z-index: 1;
  pointer-events: none;
}

.passport-shell::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 24px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(180deg, rgba(10, 49, 97, 0.12), rgba(10, 49, 97, 0));
  z-index: 1;
  pointer-events: none;
}

.passport-shell > * {
  position: relative;
  z-index: 3;
}

.passport-copy {
  padding: clamp(0.7rem, 2vw, 1.2rem) clamp(0.4rem, 2vw, 0.95rem);
}

.passport-eyebrow {
  margin: 0 0 0.75rem;
  display: inline-block;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(10, 49, 97, 0.08);
  color: #0e3a6f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.passport-copy h2 {
  margin: 0;
  color: #0c2f5b;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.passport-copy p {
  margin: 0.95rem 0 0;
  color: #4f667f;
  font-size: 1rem;
  line-height: 1.62;
}

.passport-list {
  margin: 1.05rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.52rem;
}

.passport-list li {
  position: relative;
  padding-left: 1.15rem;
  color: #213f60;
  font-size: 0.95rem;
  font-weight: 600;
}

.passport-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(145deg, #f0cc7a, #c79637);
}

.passport-cta {
  margin-top: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 11px;
  padding: 0.72rem 1.04rem;
  background: #0c3769;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.passport-cta:hover,
.passport-cta:focus-visible {
  background: #0a2f59;
  transform: translateY(-1px);
  outline: none;
}

.passport-visual {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  min-height: 320px;
  border: 1px solid rgba(10, 49, 97, 0.14);
  background: #f6f0e4;
  padding: 0.65rem;
}

.passport-book {
  height: 100%;
  min-height: 332px;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border: 1px solid rgba(10, 49, 97, 0.18);
  position: relative;
}

.passport-book::before {
  content: "";
  position: absolute;
  top: 72px;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(10, 49, 97, 0.2),
    rgba(10, 49, 97, 0.08),
    rgba(10, 49, 97, 0.2)
  );
  transform: translateX(-50%);
  z-index: 1;
}

.passport-visa-banner {
  --banner-left-zone: 30%;
  --banner-right-zone: 176px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  height: 72px;
  display: grid;
  grid-template-columns: var(--banner-left-zone) minmax(0, 1fr) minmax(140px, var(--banner-right-zone));
  align-items: center;
  gap: 0.48rem;
  padding: 0.5rem 0.58rem;
  background:
    linear-gradient(105deg, rgba(7, 28, 63, 0.82), rgba(11, 48, 91, 0.62) 36%, rgba(148, 29, 55, 0.58) 64%, rgba(10, 45, 87, 0.66)),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.18) 0 6px,
      rgba(179, 25, 66, 0.18) 6px 12px
    );
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  overflow: hidden;
}

.passport-visa-banner::before,
.passport-visa-banner::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.passport-visa-banner::before {
  left: 0;
  top: 0;
  width: var(--banner-left-zone);
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 44, 88, 0.95), rgba(9, 34, 69, 0.92));
}

.passport-visa-banner::after {
  left: 0.9%;
  top: 10%;
  width: calc(var(--banner-left-zone) - 2.2%);
  height: 80%;
  opacity: 0.62;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.92) 1.2px, transparent 1.8px);
  background-size: 12px 12px;
}

.passport-visa-chip {
  position: relative;
  grid-column: 1;
  justify-self: center;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.52rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.24);
  color: #f7f9fc;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.passport-visa-country {
  position: relative;
  grid-column: 2;
  z-index: 2;
  justify-self: start;
  padding-left: 0.62rem;
  color: rgba(246, 250, 255, 0.94);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  text-align: left;
  line-height: 1.16;
  max-width: 20ch;
  text-wrap: balance;
}

.passport-visa-address {
  position: relative;
  grid-column: 3;
  z-index: 2;
  justify-self: end;
  text-align: right;
  color: rgba(246, 250, 255, 0.94);
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.2;
  max-width: 16ch;
  text-wrap: balance;
}

.passport-logo-center {
  position: absolute;
  top: 80px;
  left: 25%;
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
}

.passport-logo-center img {
  display: block;
  justify-self: center;
  height: 48px;
  width: auto;
  opacity: 0.84;
  filter: saturate(0.95) drop-shadow(0 2px 8px rgba(11, 48, 91, 0.22));
}

.passport-page {
  padding: 6.15rem 0.9rem 0.92rem;
  position: relative;
  min-width: 0;
}

.passport-page-left {
  padding-top: 8.6rem;
  padding-right: 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.08)),
    repeating-linear-gradient(180deg, rgba(16, 61, 114, 0.035) 0 1px, transparent 1px 31px),
    #ece3d1;
}

.passport-page-right {
  padding-left: 1.55rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.08)),
    repeating-linear-gradient(180deg, rgba(16, 61, 114, 0.03) 0 1px, transparent 1px 31px),
    #f2e9d8;
  padding-right: 0.82rem;
}

.passport-page-label {
  margin: 0;
  color: #2a4f78;
  font-size: 0.56rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.passport-page-value {
  margin: 0.22rem 0 0.5rem;
  color: #123a64;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.32;
  overflow-wrap: anywhere;
}

.passport-page-right .passport-page-value {
  font-size: 0.69rem;
  line-height: 1.28;
  margin-bottom: 0.42rem;
  max-width: 95%;
  text-wrap: pretty;
}

.passport-visa-fields {
  margin: 0.46rem 0 0;
  display: grid;
  gap: 0.36rem;
}

.passport-visa-row {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: baseline;
  gap: 0.4rem;
  border-bottom: 1px dashed rgba(16, 61, 114, 0.18);
  padding-bottom: 0.24rem;
}

.passport-visa-fields-tight .passport-visa-row {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 0.2rem;
}

.passport-visa-fields-tight .passport-visa-row dt {
  font-size: 0.44rem;
  line-height: 1.15;
  letter-spacing: 0.09em;
}

.passport-visa-fields-tight .passport-visa-row dd {
  font-size: 0.57rem;
  line-height: 1.28;
}

.passport-visa-row dt,
.passport-visa-row dd {
  margin: 0;
}

.passport-visa-row dt {
  color: #416184;
  font-size: 0.56rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.passport-visa-row dd {
  color: #10365f;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.passport-mrz {
  margin: 0.7rem 0 0;
  font-family: "SF Mono", "Menlo", "Consolas", monospace;
  color: #1a436d;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.passport-page-note {
  margin: 0.6rem 0 0;
  color: #3e5e7f;
  font-size: 0.58rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.passport-signature {
  margin-top: 0.5rem;
  display: grid;
  gap: 0.1rem;
  max-width: calc(100% - 3.8rem);
}

.passport-signature-line {
  color: #12385f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  overflow-wrap: anywhere;
  line-height: 1.2;
  text-wrap: pretty;
}

.passport-signature-role {
  color: #4b6482;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  line-height: 1.2;
  text-wrap: pretty;
}

.passport-seal {
  position: absolute;
  right: 0.56rem;
  bottom: 0.54rem;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 2px dashed rgba(10, 49, 97, 0.26);
  background: radial-gradient(circle at center, rgba(10, 49, 97, 0.08), transparent 72%);
}

.passport-seal::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1.4px solid rgba(10, 49, 97, 0.28);
  border-radius: 999px;
}

.passport-page-right::after {
  content: "USA";
  position: absolute;
  right: 0.55rem;
  top: 5.62rem;
  color: rgba(16, 61, 114, 0.11);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.passport-page-left::after {
  content: "GR";
  position: absolute;
  right: 0.88rem;
  bottom: 0.72rem;
  color: rgba(16, 61, 114, 0.13);
  font-size: 1.52rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.services-section {
  position: relative;
  padding: clamp(2.2rem, 6vw, 4rem) 1rem clamp(2.4rem, 6vw, 4.6rem);
  background:
    radial-gradient(circle at 85% 8%, rgba(201, 164, 77, 0.12), transparent 34%),
    linear-gradient(180deg, #eff4fa 0%, #e8eef7 100%);
}

.services-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.services-eyebrow {
  margin: 0 auto 0.72rem;
  display: table;
  padding: 0.34rem 0.82rem;
  border-radius: 999px;
  background: rgba(12, 53, 103, 0.08);
  color: #134173;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-title {
  margin: 0;
  text-align: center;
  color: #0f3564;
  font-size: clamp(1.5rem, 3.2vw, 2.35rem);
  line-height: 1.1;
}

.services-groups {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.3rem;
}

.services-group {
  display: grid;
  gap: 0.82rem;
}

.services-group-header {
  display: grid;
  gap: 0.3rem;
  justify-items: center;
  text-align: center;
}

.services-group-header-featured {
  position: static;
  width: auto;
  margin-left: 0;
  min-height: auto;
  padding: 0;
  background: none;
  display: grid;
  gap: 0.3rem;
  align-content: normal;
  justify-items: center;
  text-align: center;
}

.services-group-header-featured .services-group-title {
  color: #0f3564;
}

.services-group-header-featured .services-group-copy {
  color: #4f6782;
}

.services-group-row {
  display: grid;
  gap: 1rem;
}

.services-group-row-triple {
  gap: 0.9rem;
}

.services-group-row-banner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
}

.services-group-row-banner-item {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.35rem;
  padding: 0 0.5rem;
  text-align: center;
}

.services-group-row-banner-item .services-group-copy {
  max-width: 26ch;
}

.services-group-row-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: start;
}

.services-group-title {
  margin: 0;
  text-align: center;
  color: #0f3564;
  font-family: inherit;
  font-size: clamp(1.28rem, 2.4vw, 1.7rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.services-group-copy {
  margin: 0.42rem auto 0;
  max-width: 54ch;
  text-align: center;
  color: #4f6782;
  font-family: inherit;
  font-size: clamp(0.92rem, 1.2vw, 0.98rem);
  line-height: 1.5;
  text-wrap: balance;
}

.services-group-cards {
  display: grid;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  margin: 0 auto;
}

.services-group-cards-four {
  grid-template-columns: repeat(4, minmax(220px, 260px));
}

.services-group-cards-three {
  grid-template-columns: repeat(3, minmax(220px, 260px));
}

.services-group-cards-single {
  grid-template-columns: minmax(220px, 260px);
}

.services-group-cards-single .service-card {
  min-height: 400px;
}

.services-group-row-cards .services-group {
  gap: 0;
  justify-items: center;
}

.services-group-mobile-header {
  display: none;
}

.services-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.services-desktop-grid {
  display: none;
}

.service-card {
  --service-media-height: 36%;
  position: relative;
  min-height: 400px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background:
    linear-gradient(148deg, rgba(10, 49, 97, 0.98), rgba(16, 74, 138, 0.92) 52%, rgba(129, 30, 70, 0.9));
  box-shadow: 0 14px 26px rgba(8, 35, 67, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.17), transparent 30%),
    radial-gradient(circle at 78% 82%, rgba(201, 164, 77, 0.22), transparent 42%);
  pointer-events: none;
}

.service-card-graphic {
  width: 92px;
  height: 92px;
  position: absolute;
  top: 1.08rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  stroke: rgba(255, 255, 255, 0.93);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.24s ease, filter 0.24s ease, opacity 0.24s ease;
}

.service-card-text {
  position: absolute;
  top: 6.85rem;
  bottom: calc(var(--service-media-height) + 4.05rem);
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.24rem;
  padding: 0 1rem 0.4rem;
  text-align: center;
  z-index: 3;
  overflow: hidden;
}

.service-card-head {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.12;
  font-weight: 800;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-wrap: balance;
}

.service-card-meta {
  font-size: 0.68rem;
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(237, 245, 255, 0.84);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-wrap: balance;
}

.service-card-copy {
  margin: 0;
  width: 100%;
  max-width: calc(100% - 1rem);
  font-size: 10px;
  line-height: 1.1;
  color: rgba(238, 244, 255, 0.94);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.94;
  transition: opacity 0.24s ease;
  text-wrap: balance;
}

.service-card-quote {
  position: absolute;
  left: 50%;
  bottom: 0.95rem;
  transform: translateX(-50%);
  z-index: 4;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.42rem 0.92rem;
  width: max-content;
  min-width: 190px;
  max-width: calc(100% - 1.6rem);
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: linear-gradient(135deg, rgba(239, 201, 111, 0.98), rgba(191, 142, 44, 0.96));
  color: #0a325f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 8px 14px rgba(10, 36, 64, 0.24);
  transition:
    transform 0.3s var(--hover-spring),
    box-shadow 0.3s var(--hover-soft),
    filter 0.24s var(--hover-soft),
    background-color 0.24s var(--hover-soft);
}

.service-card-quote:hover,
.service-card-quote:focus-visible {
  transform: translateX(-50%) translateY(-2px) scale(1.03);
  box-shadow: 0 12px 20px rgba(10, 36, 64, 0.28);
  filter: saturate(1.06);
  outline: none;
}

.service-card-media {
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 3.9rem;
  height: var(--service-media-height);
  margin: 0;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(7, 30, 58, 0.32);
  overflow: hidden;
  box-shadow: 0 12px 20px rgba(6, 28, 56, 0.38);
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  filter: saturate(0.9) brightness(0.78);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.28s ease, transform 0.28s ease, filter 0.28s ease;
}

.service-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 28, 53, 0.08), rgba(7, 28, 53, 0.3));
  transition: opacity 0.28s ease;
}

.service-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.28s ease;
}

.service-card-more {
  display: none;
  margin-top: 0.56rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(10, 49, 97, 0.34);
  color: #ffffff;
  border-radius: 999px;
  padding: 0.42rem 0.82rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.service-card-more:hover,
.service-card-more:focus-visible {
  background: rgba(17, 74, 134, 0.58);
  border-color: rgba(255, 255, 255, 0.45);
  outline: none;
}

.service-card:hover .service-card-copy,
.service-card:focus-within .service-card-copy {
  opacity: 1;
}

.service-card:hover > .service-card-graphic {
  transform: translateX(-50%) translateY(-3px) scale(1.08);
  filter: drop-shadow(0 4px 10px rgba(5, 23, 44, 0.3));
  opacity: 0.98;
  animation: none;
}

.service-card:hover {
  transform: scale(1.025);
  box-shadow: 0 18px 32px rgba(8, 35, 67, 0.28);
}

.service-card:hover .service-card-media,
.service-card:focus-within .service-card-media {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: saturate(1.04) brightness(0.95);
}

.service-card:hover .service-card-media img,
.service-card:focus-within .service-card-media img {
  transform: scale(1.09);
}

@media (min-width: 1025px) {
  .hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 6.2rem);
  }

  .services-desktop-grid {
    display: grid;
  }

  .services-groups {
    display: none;
  }

  .services-grid {
    isolation: isolate;
  }

  .service-card {
    width: 100%;
    justify-self: start;
    transform-origin: left center;
    will-change: width, margin-left, transform, filter, opacity;
    transition:
      width 0.48s cubic-bezier(0.22, 0.74, 0.2, 1),
      margin-left 0.48s cubic-bezier(0.22, 0.74, 0.2, 1),
      transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1),
      box-shadow 0.42s ease,
      filter 0.3s ease,
      opacity 0.3s ease;
  }

  .service-card:hover,
  .service-card:focus-within {
    width: calc(200% + 1rem);
    transform: translateY(-8px) scale(1.01);
    z-index: 40;
    box-shadow: 0 28px 40px rgba(8, 35, 67, 0.36);
  }

  .service-card:nth-child(4),
  .service-card:nth-child(5),
  .service-card:nth-child(9),
  .service-card:nth-child(10) {
    transform-origin: right center;
  }

  .service-card:nth-child(4):hover,
  .service-card:nth-child(4):focus-within,
  .service-card:nth-child(5):hover,
  .service-card:nth-child(5):focus-within,
  .service-card:nth-child(9):hover,
  .service-card:nth-child(9):focus-within,
  .service-card:nth-child(10):hover,
  .service-card:nth-child(10):focus-within {
    margin-left: calc(-100% - 1rem);
  }

  .service-card:nth-child(3),
  .service-card:nth-child(8) {
    transform-origin: center center;
  }

  .service-card:nth-child(3):hover,
  .service-card:nth-child(3):focus-within,
  .service-card:nth-child(8):hover,
  .service-card:nth-child(8):focus-within {
    width: calc(300% + 2rem);
    margin-left: calc(-100% - 1rem);
    z-index: 60;
  }

  .services-grid:has(.service-card:hover) .service-card:not(:hover),
  .services-grid:has(.service-card:focus-within) .service-card:not(:focus-within) {
    filter: brightness(0.56) saturate(0.78);
    opacity: 0.72;
    transform: scale(0.985);
  }

  .service-card:hover .service-card-copy,
  .service-card:focus-within .service-card-copy {
    opacity: 1;
  }

  .service-card-media {
    opacity: 0.72;
    transform: translateY(10px) scale(0.985);
    filter: saturate(0.86) brightness(0.78);
  }

  .service-card:hover .service-card-media::after,
  .service-card:focus-within .service-card-media::after {
    opacity: 0.08;
  }
}

@keyframes service-card-float {
  0% {
    transform: translateY(-57%) scale(2.2);
  }

  50% {
    transform: translateY(-69%) scale(2.24);
  }

  100% {
    transform: translateY(-57%) scale(2.2);
  }
}

body.service-modal-open {
  overflow: hidden;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 22000;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.service-modal.service-modal-visible {
  opacity: 1;
  pointer-events: auto;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 24, 44, 0.68);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.service-modal-dialog {
  position: relative;
  width: min(760px, calc(100vw - 1.4rem));
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(165deg, rgba(8, 40, 77, 0.95), rgba(12, 58, 106, 0.94) 52%, rgba(126, 32, 69, 0.9)),
    #0c3d73;
  color: #ffffff;
  box-shadow: 0 26px 48px rgba(6, 22, 41, 0.45);
  overflow: hidden;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.24s ease;
}

.service-modal.service-modal-visible .service-modal-dialog {
  transform: translateY(0) scale(1);
}

.service-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(8, 29, 54, 0.5);
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.service-modal-close:hover,
.service-modal-close:focus-visible {
  background: rgba(9, 38, 71, 0.72);
  border-color: rgba(255, 255, 255, 0.56);
  outline: none;
}

.service-modal-media {
  margin: 0;
  aspect-ratio: 16 / 9;
  clip-path: polygon(
    0 16%,
    10% 8%,
    22% 14%,
    36% 9%,
    50% 14%,
    64% 8%,
    78% 14%,
    92% 8%,
    100% 12%,
    100% 100%,
    0 100%
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.service-modal-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-modal-content {
  padding: 1rem 1rem 1.2rem;
}

.service-modal-meta {
  margin: 0;
  color: rgba(232, 242, 255, 0.86);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-modal-title {
  margin: 0.46rem 0 0;
  font-size: clamp(1.22rem, 3.1vw, 1.8rem);
  line-height: 1.08;
  color: #ffffff;
}

.service-modal-copy {
  margin: 0.7rem 0 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(234, 243, 255, 0.95);
}

.simulator-section {
  position: relative;
  isolation: isolate;
  padding: clamp(2.2rem, 6vw, 4rem) 1rem clamp(2.4rem, 6vw, 4.2rem);
  background:
    radial-gradient(circle at 8% 16%, rgba(201, 164, 77, 0.09), transparent 36%),
    linear-gradient(180deg, #e8eef7 0%, #edf3fb 100%);
}

.simulator-section::before,
.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='84' viewBox='0 0 84 84'%3E%3Cg fill='none' stroke='rgba(14,61,114,0.09)' stroke-width='2' transform='rotate(-14,42,42)'%3E%3Crect x='13' y='22' width='58' height='40' rx='8'/%3E%3Cpath d='M42 22v40'/%3E%3Ccircle cx='31' cy='39' r='6'/%3E%3Cpath d='M24 52h14M47 34h14M47 42h14M47 50h14'/%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='84' viewBox='0 0 84 84'%3E%3Cg fill='none' stroke='rgba(179,25,66,0.08)' stroke-width='2' transform='rotate(12,42,42)'%3E%3Crect x='14' y='26' width='56' height='32' rx='7'/%3E%3Cpath d='M23 38h20M23 45h14'/%3E%3Ccircle cx='57' cy='42' r='8'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 102px 102px, 120px 120px;
  background-position: 0 0, 52px 34px;
  opacity: 0.46;
}

.simulator-inner {
  width: min(960px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.simulator-lead {
  margin: 0.95rem auto 0;
  max-width: 66ch;
  text-align: center;
  color: #4e6783;
  font-size: 0.98rem;
  line-height: 1.55;
}

.simulator-card {
  margin-top: 1.4rem;
  border: 1px solid rgba(10, 49, 97, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 28px rgba(10, 49, 97, 0.1);
  padding: 1.2rem;
}

.simulator-step {
  display: none;
}

.simulator-step.simulator-step-active {
  display: block;
}

.simulator-progress {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.58rem;
}

.simulator-progress-item {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(17, 67, 123, 0.26);
  background: rgba(228, 237, 248, 0.86);
  color: #496486;
  font-size: 0.76rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.simulator-progress-active {
  border-color: rgba(13, 66, 122, 0.42);
  background: linear-gradient(135deg, #0f4a88, #0a3568);
  color: #ffffff;
}

.simulator-step-title {
  margin: 0 0 0.65rem;
  color: #123a67;
  font-size: 1rem;
  font-weight: 800;
}

.simulator-label {
  display: block;
  margin: 0 0 0.46rem;
  color: #123c6b;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.simulator-input,
.simulator-select {
  width: 100%;
  border: 1px solid rgba(16, 61, 114, 0.22);
  border-radius: 12px;
  background: #ffffff;
  color: #12385f;
  font-size: 0.95rem;
  padding: 0.72rem 0.82rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.simulator-input:focus-visible,
.simulator-select:focus-visible {
  outline: none;
  border-color: rgba(16, 88, 160, 0.62);
  box-shadow: 0 0 0 4px rgba(36, 106, 174, 0.14);
}

.simulator-error {
  margin: 0.56rem 0 0;
  color: #a6193f;
  font-size: 0.8rem;
  font-weight: 600;
}

.simulator-phone-block {
  margin-top: 0.8rem;
}

.simulator-phone-row {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(180px, 1.25fr);
  gap: 0.55rem;
  align-items: center;
}

.simulator-phone-country {
  min-width: 0;
}

.simulator-phone-dial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  height: 44px;
  padding: 0 0.66rem;
  border: 1px solid rgba(16, 61, 114, 0.2);
  border-radius: 11px;
  background: rgba(237, 244, 253, 0.9);
  color: #123e6d;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.simulator-questions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.86rem;
}

.simulator-field {
  margin: 0;
  border: 1px solid rgba(10, 49, 97, 0.1);
  border-radius: 14px;
  background: rgba(248, 251, 255, 0.88);
  padding: 0.78rem;
}

.simulator-choice-group {
  display: flex;
  flex-direction: column;
  gap: 0.52rem;
}

.simulator-actions {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.simulator-actions .simulator-btn {
  margin-top: 0;
  flex: 1 1 auto;
}

.simulator-option {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #35557a;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.simulator-option input {
  accent-color: #1d5d9a;
}

.simulator-btn {
  margin-top: 1rem;
  border: 1px solid transparent;
  border-radius: 12px;
  background: linear-gradient(132deg, #0e3f78, #0a3161);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.76rem 1.05rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.simulator-btn:hover,
.simulator-btn:focus-visible {
  background: linear-gradient(132deg, #114983, #0b3769);
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(9, 37, 69, 0.22);
  outline: none;
}

.simulator-btn-secondary {
  margin-top: 0.55rem;
  border-color: rgba(16, 61, 114, 0.22);
  background: rgba(238, 245, 255, 0.86);
  color: #123e6d;
}

.simulator-btn-secondary:hover,
.simulator-btn-secondary:focus-visible {
  background: rgba(225, 237, 252, 0.98);
  box-shadow: none;
}

.simulator-loading {
  text-align: center;
  padding: 1rem 0.2rem 0.4rem;
}

.simulator-loader {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  border: 3px solid rgba(17, 74, 134, 0.16);
  border-top-color: #0f4e90;
  border-right-color: #0b3d75;
  animation: simulator-spin 0.9s linear infinite;
}

.simulator-loading-title {
  margin: 0.9rem 0 0;
  color: #123d6c;
  font-size: 1.02rem;
  font-weight: 800;
}

.simulator-loading-copy {
  margin: 0.46rem auto 0;
  max-width: 42ch;
  color: #4f6782;
  font-size: 0.92rem;
  line-height: 1.45;
}

.simulator-done {
  text-align: center;
}

.simulator-done-title {
  margin: 0;
  color: #123c6b;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 800;
}

.simulator-done-copy {
  margin: 0.62rem auto 0;
  max-width: 52ch;
  color: #4f6782;
  font-size: 0.98rem;
  line-height: 1.5;
}

.simulator-whatsapp {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(12, 131, 80, 0.24);
  background: linear-gradient(120deg, #11a95e, #0b8f4f);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.72rem 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.simulator-whatsapp:hover,
.simulator-whatsapp:focus-visible {
  background: linear-gradient(120deg, #13b265, #0d9956);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(9, 82, 47, 0.24);
  outline: none;
}

@keyframes simulator-spin {
  to {
    transform: rotate(360deg);
  }
}

.testimonials-section {
  position: relative;
  isolation: isolate;
  padding: 0 1rem 3rem;
  background: linear-gradient(180deg, #e8eef7 0%, #e5ebf5 100%);
}

.testimonials-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(10, 49, 97, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 1.55rem 1.2rem 1.35rem;
  box-shadow: 0 14px 26px rgba(8, 35, 67, 0.1);
}

.testimonials-lead {
  margin: 0.92rem auto 0;
  max-width: 64ch;
  text-align: center;
  color: #4c6683;
  font-size: 0.96rem;
  line-height: 1.55;
}

.testimonials-carousel {
  margin-top: 1.4rem;
  position: relative;
  padding: 1.1rem 3.1rem 0.9rem;
}

.testimonials-stack {
  display: none;
}

.testimonials-stack-card {
  position: absolute;
  left: 50%;
  width: min(820px, calc(100% - 2.8rem));
  height: calc(100% - 3.2rem);
  border-radius: 22px;
  transform-origin: center center;
}

.testimonials-stack-card-back {
  top: 1.2rem;
  transform: translateX(-50%) rotate(-5deg);
  background: linear-gradient(140deg, rgba(10, 49, 97, 0.16), rgba(201, 164, 77, 0.2));
}

.testimonials-stack-card-front {
  top: 1.35rem;
  transform: translateX(-50%) rotate(4deg);
  background: linear-gradient(140deg, rgba(14, 62, 116, 0.16), rgba(184, 136, 48, 0.22));
}

.testimonials-nav {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(14, 60, 110, 0.2);
  background: rgba(255, 255, 255, 0.88);
  color: #0f3d70;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.testimonials-nav:hover,
.testimonials-nav:focus-visible {
  background: #ffffff;
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 10px 18px rgba(9, 37, 69, 0.18);
  outline: none;
}

.testimonials-nav-prev {
  left: 0.28rem;
}

.testimonials-nav-next {
  right: 0.28rem;
}

.testimonials-viewport {
  position: relative;
  z-index: 1;
  max-width: min(980px, 100%);
  margin: 0 auto;
  min-height: 364px;
}

.testimonial-postcard {
  display: none;
  position: relative;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  align-items: stretch;
  gap: 0;
  border-radius: 22px;
  border: none;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(37, 93, 125, 0.88) 0 8px,
      #f6f0e3 8px 19px,
      rgba(151, 47, 60, 0.82) 19px 27px,
      #f6f0e3 27px 38px
    );
  box-shadow: 0 20px 36px rgba(8, 35, 67, 0.16);
  overflow: hidden;
  min-height: 364px;
  height: 364px;
  padding: 12px;
}

.testimonial-postcard::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 14px;
  border: 1px solid rgba(171, 148, 104, 0.38);
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 255, 255, 0.88), transparent 42%),
    linear-gradient(160deg, #fdf9ef 0%, #f4ead2 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
  z-index: 0;
  pointer-events: none;
}

.testimonial-postcard > * {
  position: relative;
  z-index: 1;
}

.testimonial-postcard.is-active {
  display: grid;
  animation: testimonial-postcard-in 0.52s cubic-bezier(0.22, 0.74, 0.2, 1);
}

.testimonial-postcard-media {
  margin: 0;
  position: relative;
  min-height: 100%;
  border-right: 1px solid rgba(10, 49, 97, 0.18);
  border-radius: 10px 0 0 10px;
  overflow: hidden;
}

.testimonial-postcard-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 33, 56, 0.26), rgba(13, 33, 56, 0.08)),
    linear-gradient(130deg, rgba(201, 164, 77, 0.24), rgba(201, 164, 77, 0));
  pointer-events: none;
  z-index: 1;
}

.testimonial-postcard-media::after {
  content: none;
}

.testimonial-postcard-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.testimonial-postcard-body {
  padding: 1.05rem 4.8rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0 10px 10px 0;
  min-width: 0;
  overflow: hidden;
}

.testimonial-postcard-eagle {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(181, 136, 46, 0.52);
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 247, 229, 0.95), rgba(214, 174, 91, 0.9) 58%, rgba(169, 124, 37, 0.9) 100%);
  color: rgba(87, 60, 16, 0.92);
  font-size: 1.45rem;
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: 0 6px 16px rgba(99, 69, 17, 0.22);
}

.testimonial-postcard-eagle::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 999px;
  border: 1px dashed rgba(133, 93, 24, 0.48);
  pointer-events: none;
}

.testimonial-postcard-tag {
  margin: 0;
  display: inline-flex;
  align-self: flex-start;
  padding: 0.26rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 164, 77, 0.46);
  background: rgba(201, 164, 77, 0.18);
  color: #8b641c;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-postcard-quote {
  margin: 0.74rem 0 0;
  color: #143a67;
  font-size: clamp(0.96rem, 1.3vw, 1.08rem);
  line-height: 1.55;
  font-weight: 600;
}

.testimonial-postcard-name {
  margin: 0.82rem 0 0;
  color: #0e3561;
  font-size: 0.93rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.testimonial-postcard-route {
  margin: 0.3rem 0 0;
  color: #b5852c;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.testimonials-dots {
  margin-top: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.testimonials-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 1px solid rgba(14, 60, 110, 0.28);
  background: rgba(14, 60, 110, 0.22);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.testimonials-dot:hover,
.testimonials-dot:focus-visible {
  transform: scale(1.08);
  background: rgba(14, 60, 110, 0.38);
  outline: none;
}

.testimonials-dot.is-active {
  background: linear-gradient(145deg, #d0a349, #b6862e);
  border-color: rgba(182, 134, 46, 0.72);
}

@keyframes testimonial-postcard-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.99);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.site-footer {
  position: relative;
  padding: 0;
  background: linear-gradient(180deg, #e8f2fb 0%, #deecf8 52%, #d6e7f6 100%);
  overflow: hidden;
}

.site-footer::before {
  content: none;
}

.site-footer::after {
  content: none;
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 90px;
  display: grid;
  justify-items: end;
  gap: 0.55rem;
  z-index: 15050;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 15060;
  transition: transform 0.2s ease-in-out;
}

.whatsapp-float:active {
  transform: scale(0.9);
}

.whatsapp-float img {
  width: 36px;
  height: 36px;
}

#whatsappModal {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 320px;
  max-width: calc(100% - 40px);
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  z-index: 15061;
  font-family: Arial, sans-serif;
}

#whatsappModal.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#whatsappModal .header {
  background: #25d366;
  color: #ffffff;
  padding: 12px;
  border-radius: 10px 10px 0 0;
  font-weight: 700;
}

#whatsappModal .content {
  padding: 15px;
  color: #333333;
  font-size: 14px;
}

#whatsappModal .asesor {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  background: #f7f7f7;
  padding: 10px;
  border-radius: 8px;
}

#whatsappModal .asesor img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

#whatsappModal .asesor .info {
  flex: 1;
}

#whatsappModal .asesor .btn-chat {
  background: #25d366;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: background-color 0.2s;
}

#whatsappModal .asesor .btn-chat:hover {
  background-color: #128c7e;
}

#whatsappModal .close {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  float: right;
  font-size: 18px;
  color: #ffffff;
}

.floating-wa.Btn {
  font-family: inherit;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background-color: #00d757;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  transition:
    width 0.3s ease,
    border-radius 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.2s ease;
}

.floating-wa.Btn .sign {
  width: 100%;
  transition: width 0.3s ease, padding-left 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-wa.Btn .socialSvg {
  width: 25px;
  height: 25px;
  display: block;
}

.floating-wa.Btn .socialSvg path {
  fill: #ffffff;
}

.floating-wa.Btn .text {
  position: absolute;
  right: 0;
  width: 0%;
  opacity: 0;
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
  pointer-events: none;
  transition: width 0.3s ease, opacity 0.3s ease, padding-right 0.3s ease;
}

.floating-wa.Btn:hover,
.floating-wa.Btn:focus-visible {
  width: 150px;
  border-radius: 40px;
  box-shadow: 0 10px 22px rgba(8, 53, 29, 0.28);
  outline: none;
}

.floating-wa.Btn:hover .sign,
.floating-wa.Btn:focus-visible .sign {
  width: 30%;
  padding-left: 10px;
}

.floating-wa.Btn:hover .text,
.floating-wa.Btn:focus-visible .text {
  opacity: 1;
  width: 70%;
  padding-right: 10px;
}

.floating-wa.Btn:active {
  transform: translate(2px, 2px);
}

.floating-top {
  width: 45px;
  height: 45px;
  border-radius: 999px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #0c3a6a;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 24px rgba(8, 43, 79, 0.24);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(8px) scale(0.92);
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.floating-top:hover,
.floating-top:focus-visible {
  background: #ffffff;
  color: #082d54;
  box-shadow: 0 12px 26px rgba(8, 43, 79, 0.28);
  outline: none;
}

.floating-top-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  animation: floating-top-blink 1.25s ease-in-out infinite;
}

.floating-top svg {
  width: 20px;
  height: 20px;
  display: block;
}

.floating-top svg path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.floating-top-visible:hover,
.floating-top-visible:focus-visible {
  animation-play-state: paused;
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 18px;
    right: 16px;
    width: 56px;
    height: 56px;
  }

  #whatsappModal {
    right: 12px;
    left: 12px;
    bottom: 80px;
    width: auto;
  }
}

@keyframes floating-top-blink {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 10px 24px rgba(8, 43, 79, 0.24);
  }

  50% {
    opacity: 0.68;
    box-shadow: 0 8px 17px rgba(8, 43, 79, 0.14);
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-top-visible {
    animation: none;
  }
}

.footer-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: clamp(1.5rem, 3.4vw, 2.3rem) clamp(1rem, 4vw, 2.8rem);
  border-radius: 0;
  border: none;
  background:
    linear-gradient(180deg, rgba(177, 214, 240, 0.88), rgba(171, 210, 238, 0.84) 42%, rgba(186, 220, 244, 0.84)),
    linear-gradient(130deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  box-shadow: none;
  overflow: hidden;
}

.footer-inner::before {
  content: none;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.62fr) minmax(0, 0.66fr);
  gap: clamp(1rem, 2.6vw, 1.8rem);
  align-items: stretch;
}

.footer-brand-block,
.footer-links-block,
.footer-connect-block,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.footer-links-block,
.footer-connect-block {
  text-align: center;
  justify-self: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  text-decoration: none;
}

.footer-brand-logo {
  width: clamp(180px, 22vw, 260px);
  height: auto;
}

.footer-disclaimer-chip {
  margin: 0.9rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  padding: 0.24rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(120deg, rgba(8, 60, 111, 0.34), rgba(8, 60, 111, 0.12));
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-disclaimer-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f5dc90, #cea33d);
  box-shadow: 0 0 0 3px rgba(206, 163, 61, 0.2);
}

.footer-tagline {
  margin: 0.7rem 0 0;
  max-width: 62ch;
  width: fit-content;
  color: #ffffff;
  font-size: clamp(0.84rem, 1.05vw, 0.94rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  padding: 0.72rem 0.88rem;
  border-left: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  background: linear-gradient(120deg, rgba(7, 47, 90, 0.9), rgba(9, 62, 112, 0.72));
  box-shadow: 0 12px 26px rgba(6, 33, 63, 0.28);
  transform: rotate(-0.35deg);
  transform-origin: left center;
  flex: 0 0 auto;
}

.footer-title {
  margin: 0;
  color: rgba(12, 62, 116, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.72rem;
  justify-items: center;
}

.footer-links a {
  color: #0d447b;
  text-decoration: none;
  font-size: 1.01rem;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #0a3361;
  transform: translateX(2px);
  outline: none;
}

.footer-social-list {
  margin-top: 0.86rem;
  display: grid;
  gap: 0.52rem;
  justify-items: center;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  width: fit-content;
  text-decoration: none;
  color: #0d447b;
  font-size: 0.94rem;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: #0a3361;
  transform: translateX(2px);
  outline: none;
}

.footer-contact-link {
  margin-top: 0.55rem;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  color: #0e4a85;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
}

.footer-contact-link:hover,
.footer-contact-link:focus-visible {
  color: #0a3462;
  outline: none;
}

.footer-address {
  margin: 0.62rem 0 0;
  margin-left: auto;
  margin-right: auto;
  color: rgba(13, 62, 113, 0.92);
  font-size: 0.87rem;
  line-height: 1.5;
  max-width: 30ch;
  text-align: center;
}

.footer-bottom {
  margin-top: clamp(1.4rem, 3.8vw, 2.5rem);
  padding-top: clamp(1rem, 2.4vw, 1.35rem);
  border-top: 1px solid rgba(14, 62, 116, 0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-legal {
  align-self: center;
  justify-self: center;
  text-align: center;
}

.footer-copy {
  margin: 0;
  color: rgba(13, 62, 113, 0.84);
  font-size: 0.98rem;
  font-weight: 500;
}

.footer-legal-links {
  margin-top: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: #0e4b86;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
  color: #0a3563;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  outline: none;
}

.footer-motto {
  margin: 0;
  max-width: 72ch;
  color: #0b396a;
  font-size: clamp(0.98rem, 1.35vw, 1.1rem);
  font-family: "Poppins", "Montserrat", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-style: italic;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.005em;
  transform: rotate(-0.45deg);
  transform-origin: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Hover Motion Refresh */
.contact-item {
  transition: color 0.28s var(--hover-soft), transform 0.28s var(--hover-soft), text-shadow 0.28s ease;
}

.contact-item:hover,
.contact-item:focus-visible {
  transform: translateY(-1px);
  text-shadow: 0 6px 14px rgba(8, 31, 59, 0.26);
}

.lang-btn {
  transition:
    background-color 0.24s var(--hover-soft),
    color 0.24s var(--hover-soft),
    transform 0.28s var(--hover-spring),
    box-shadow 0.28s ease;
}

.lang-btn:hover,
.lang-btn:focus-visible {
  transform: translateY(-1px) scale(1.06);
  box-shadow: 0 8px 16px rgba(8, 29, 56, 0.2);
}

.lang-notice-btn {
  transition:
    transform 0.28s var(--hover-spring),
    background-color 0.24s var(--hover-soft),
    border-color 0.24s var(--hover-soft),
    box-shadow 0.28s ease;
}

.lang-notice-btn:hover,
.lang-notice-btn:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 20px rgba(6, 28, 52, 0.22);
}

.eval-cta {
  transition:
    background-color 0.28s var(--hover-soft),
    transform 0.34s var(--hover-spring),
    box-shadow 0.34s var(--hover-soft),
    filter 0.28s ease;
}

.eval-cta:hover,
.eval-cta:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 24px rgba(98, 11, 41, 0.34);
  filter: saturate(1.08);
}

.eval-cta:hover svg,
.eval-cta:focus-visible svg {
  transform: rotate(45deg) translateX(1px);
}

.nav-toggle {
  transition: background-color 0.24s var(--hover-soft), transform 0.3s var(--hover-spring);
}

.nav-toggle:hover {
  background: #eef4fa;
  transform: translateY(-1px);
}

.nav-link {
  transition:
    color 0.24s var(--hover-soft),
    background-color 0.24s var(--hover-soft),
    transform 0.3s var(--hover-spring),
    box-shadow 0.3s var(--hover-soft);
}

.nav-link:hover,
.nav-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(10, 43, 77, 0.1);
}

.nav-link-cta:hover,
.nav-link-cta:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 24px rgba(8, 36, 64, 0.28);
}

.dropdown-item {
  transition:
    background-color 0.24s var(--hover-soft),
    transform 0.3s var(--hover-spring),
    color 0.24s var(--hover-soft);
}

.dropdown-item:hover,
.dropdown-item:focus-visible {
  transform: translateX(4px);
  color: #0e3c6d;
}

.hero-btn {
  transition:
    transform 0.34s var(--hover-spring),
    box-shadow 0.34s var(--hover-soft),
    background-color 0.24s var(--hover-soft),
    filter 0.24s ease;
}

.hero-btn-primary:hover,
.hero-btn-primary:focus-visible {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 30px rgba(109, 72, 10, 0.46);
  filter: saturate(1.07);
}

.passport-cta {
  transition:
    transform 0.3s var(--hover-spring),
    background-color 0.24s var(--hover-soft),
    box-shadow 0.3s var(--hover-soft);
}

.passport-cta:hover,
.passport-cta:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 24px rgba(9, 40, 73, 0.28);
}

.service-card {
  transition:
    transform 0.36s var(--hover-spring),
    box-shadow 0.36s var(--hover-soft),
    filter 0.3s var(--hover-soft),
    opacity 0.3s var(--hover-soft);
}

.service-card::before {
  transition: transform 0.52s var(--hover-soft), opacity 0.3s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: -48% -34%;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-62%) rotate(8deg);
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 42%,
    rgba(255, 255, 255, 0.14) 50%,
    rgba(255, 255, 255, 0) 58%
  );
  transition: transform 0.78s var(--hover-soft), opacity 0.42s ease;
}

.service-card-text {
  transition: transform 0.36s var(--hover-soft), opacity 0.28s ease;
}

.service-card-graphic {
  transition: transform 0.36s var(--hover-soft), filter 0.36s var(--hover-soft), opacity 0.3s ease;
}

.service-card-media {
  transition:
    opacity 0.32s var(--hover-soft),
    transform 0.36s var(--hover-soft),
    filter 0.36s var(--hover-soft),
    box-shadow 0.36s var(--hover-soft);
}

.service-card-media img {
  transition: transform 0.52s var(--hover-soft), filter 0.42s var(--hover-soft);
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 24px 38px rgba(8, 35, 67, 0.32);
}

.service-card:hover::before,
.service-card:focus-within::before {
  transform: scale(1.08) rotate(1.2deg);
  opacity: 0.95;
}

.service-card:hover::after,
.service-card:focus-within::after {
  opacity: 1;
  transform: translateX(64%) rotate(8deg);
}

.service-card:hover .service-card-text,
.service-card:focus-within .service-card-text {
  transform: translateY(-3px);
}

.service-card:hover > .service-card-graphic,
.service-card:focus-within > .service-card-graphic {
  transform: translateX(-50%) translateY(-8px) scale(1.12);
  filter: drop-shadow(0 9px 16px rgba(5, 23, 44, 0.34));
}

.service-card:hover .service-card-media img,
.service-card:focus-within .service-card-media img {
  transform: scale(1.14);
  filter: saturate(1.08);
}

@media (min-width: 1025px) {
  .services-grid {
    align-items: start;
  }

  .service-card {
    --service-card-desktop-width: 100%;
    transition:
      transform 0.46s var(--hover-spring),
      box-shadow 0.42s var(--hover-soft),
      filter 0.34s var(--hover-soft),
      opacity 0.3s var(--hover-soft),
      background 0.34s var(--hover-soft);
    width: var(--service-card-desktop-width);
    margin-left: 0;
    justify-self: stretch;
    transform: none;
    transform-style: preserve-3d;
  }

  .service-card:hover,
  .service-card:focus-within {
    width: var(--service-card-desktop-width);
    margin-left: 0;
    transform: translateY(-14px) rotateX(6deg) scale(1.03);
    box-shadow: 0 32px 46px rgba(8, 35, 67, 0.34);
    filter: saturate(1.08);
  }

  .service-card:nth-child(odd):hover,
  .service-card:nth-child(odd):focus-within {
    transform: translateY(-14px) rotateX(6deg) rotateY(-3.5deg) scale(1.03);
  }

  .service-card:nth-child(even):hover,
  .service-card:nth-child(even):focus-within {
    transform: translateY(-14px) rotateX(6deg) rotateY(3.5deg) scale(1.03);
  }

  .service-card:nth-child(4):hover,
  .service-card:nth-child(4):focus-within,
  .service-card:nth-child(5):hover,
  .service-card:nth-child(5):focus-within,
  .service-card:nth-child(3):hover,
  .service-card:nth-child(3):focus-within,
  .service-card:nth-child(8):hover,
  .service-card:nth-child(8):focus-within,
  .service-card:nth-child(9):hover,
  .service-card:nth-child(9):focus-within,
  .service-card:nth-child(10):hover,
  .service-card:nth-child(10):focus-within {
    width: 100%;
    margin-left: 0;
  }

  .services-grid:has(.service-card:hover) .service-card:not(:hover),
  .services-grid:has(.service-card:focus-within) .service-card:not(:focus-within) {
    filter: brightness(0.7) saturate(0.8);
    opacity: 0.82;
    transform: scale(0.98);
  }

  .service-card:hover .service-card-media,
  .service-card:focus-within .service-card-media {
    opacity: 1;
    transform: translateY(0) scale(1.03);
    filter: saturate(1.08) brightness(0.98);
  }

  .service-card:hover .service-card-copy,
  .service-card:focus-within .service-card-copy {
    opacity: 1;
  }
}

.simulator-btn,
.simulator-whatsapp {
  transition:
    transform 0.32s var(--hover-spring),
    box-shadow 0.32s var(--hover-soft),
    background-color 0.24s var(--hover-soft),
    filter 0.24s ease;
}

.simulator-btn:hover,
.simulator-btn:focus-visible,
.simulator-whatsapp:hover,
.simulator-whatsapp:focus-visible {
  transform: translateY(-3px) scale(1.015);
  filter: saturate(1.05);
}

.simulator-btn-secondary {
  transition:
    transform 0.3s var(--hover-spring),
    background-color 0.24s var(--hover-soft),
    box-shadow 0.3s var(--hover-soft),
    border-color 0.24s var(--hover-soft);
}

.simulator-btn-secondary:hover,
.simulator-btn-secondary:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 10px 18px rgba(9, 37, 69, 0.14);
}

.testimonials-nav {
  transition:
    transform 0.34s var(--hover-spring),
    background-color 0.24s var(--hover-soft),
    box-shadow 0.32s var(--hover-soft),
    border-color 0.24s var(--hover-soft);
}

.testimonials-nav:hover,
.testimonials-nav:focus-visible {
  transform: translateY(-50%) scale(1.1);
  border-color: rgba(14, 60, 110, 0.32);
  box-shadow: 0 14px 24px rgba(9, 37, 69, 0.2);
}

.testimonials-dot {
  transition:
    transform 0.3s var(--hover-spring),
    background-color 0.24s var(--hover-soft),
    border-color 0.24s var(--hover-soft),
    box-shadow 0.28s ease;
}

.testimonials-dot:hover,
.testimonials-dot:focus-visible {
  transform: translateY(-2px) scale(1.18);
  box-shadow: 0 8px 14px rgba(10, 44, 78, 0.18);
}

.floating-wa.Btn {
  transition:
    width 0.34s var(--hover-soft),
    border-radius 0.34s var(--hover-soft),
    box-shadow 0.34s var(--hover-soft),
    transform 0.32s var(--hover-spring),
    filter 0.24s ease;
}

.floating-wa.Btn:hover,
.floating-wa.Btn:focus-visible {
  transform: translateY(-3px) scale(1.01);
  filter: saturate(1.06);
}

.floating-top {
  transition:
    opacity 0.3s var(--hover-soft),
    transform 0.34s var(--hover-spring),
    background-color 0.24s var(--hover-soft),
    box-shadow 0.3s var(--hover-soft);
}

.floating-top:hover,
.floating-top:focus-visible {
  transform: translateY(-2px) scale(1.08);
}

.footer-links a,
.footer-social-link,
.footer-contact-link,
.footer-legal-links a {
  transition:
    color 0.24s var(--hover-soft),
    transform 0.3s var(--hover-spring),
    text-shadow 0.28s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-social-link:hover,
.footer-social-link:focus-visible,
.footer-contact-link:hover,
.footer-contact-link:focus-visible,
.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
  transform: translateX(4px) translateY(-1px);
  text-shadow: 0 7px 14px rgba(12, 55, 99, 0.16);
}


@media (max-width: 1024px) {
  .lang-notice {
    width: min(620px, calc(100vw - 1rem));
  }

  .lang-notice-inner {
    padding: 0.65rem 0.72rem;
  }

  .lang-notice-text {
    font-size: 0.8rem;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }

  body {
    padding-top: 136px;
  }

  .top-bar-inner {
    padding: 0 1rem;
  }

  .nav-inner {
    height: 90px;
    padding: 0 1rem;
  }

  .logo-image {
    height: 78px;
  }

  .nav-toggle {
    display: block;
    border-radius: 14px;
    border: none;
    background: transparent;
  }

  .nav-menu {
    position: fixed;
    top: 147px;
    left: 1rem;
    right: 1rem;
    border: 1px solid rgba(10, 49, 97, 0.16);
    border-radius: 16px;
    background: #eef2f7;
    box-shadow: 0 18px 28px rgba(10, 42, 67, 0.16);
    display: block;
    padding: 0.75rem;
    max-height: calc(100vh - 159px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.985);
    transform-origin: top center;
    transition:
      opacity 0.28s ease,
      transform 0.36s cubic-bezier(0.22, 0.74, 0.2, 1),
      visibility 0s linear 0.36s;
  }

  .nav-menu.nav-menu-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition:
      opacity 0.32s ease,
      transform 0.42s cubic-bezier(0.22, 0.74, 0.2, 1),
      visibility 0s;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.12rem;
    background: #ffffff;
    border: 1px solid rgba(10, 49, 97, 0.16);
    border-radius: 14px;
    padding: 0.55rem;
    opacity: 0.88;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.38s cubic-bezier(0.22, 0.74, 0.2, 1);
  }

  .nav-menu.nav-menu-open .nav-links {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-link {
    width: 100%;
    text-align: left;
    border-radius: 10px;
    font-size: 1.03rem;
    padding: 1rem 1.05rem;
    color: #4e6782;
    font-weight: 600;
  }

  .nav-link:not(.nav-link-cta)::after {
    display: none;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-panel {
    position: static;
    width: 100%;
    transform: none;
    border: 1px solid rgba(10, 49, 97, 0.1);
    border-radius: 10px;
    background: #f8fbff;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    margin-top: 0.35rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-dropdown:hover .dropdown-panel {
    transform: none;
  }

  .nav-dropdown.dropdown-open .dropdown-panel {
    max-height: 460px;
  }

  .dropdown-grid {
    grid-template-columns: 1fr;
  }

  .dropdown-section {
    border-right: none;
    border-bottom: 1px solid rgba(10, 49, 97, 0.12);
    padding: 0.8rem 0.9rem;
  }

  .dropdown-section:last-child {
    border-bottom: none;
  }
  .hero-main {
    min-height: clamp(520px, 72vh, 660px);
  }

  .hero-content {
    padding-top: clamp(2.6rem, 8vw, 3.5rem);
  }

  .passport-shell {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .passport-visual {
    min-height: 300px;
  }

  .services-groups {
    gap: 1.1rem;
  }

  .services-group-row-triple {
    gap: 1rem;
  }

  .services-group-row-banner,
  .services-group-row-cards {
    grid-template-columns: 1fr;
  }

  .services-group-row-banner {
    display: none;
  }

  .services-group-cards-four,
  .services-group-cards-three {
    grid-template-columns: repeat(2, minmax(220px, 260px));
  }

  .services-group-cards-single {
    grid-template-columns: repeat(2, minmax(220px, 260px));
  }

  .services-group-row-cards .services-group {
    gap: 0.8rem;
  }

  .services-group-mobile-header {
    display: grid;
    width: 100%;
    min-height: auto;
    padding: 0;
    justify-items: center;
    text-align: center;
    gap: 0.3rem;
  }

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

  .service-card {
    min-height: 258px;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 1rem 0.95rem 1rem;
  }

  .service-card-text {
    position: static;
    gap: 0.44rem;
    padding: 0;
  }

  .service-card-graphic {
    position: static;
    width: 74px;
    height: 74px;
    margin: 0 0 0.68rem;
    transform: none;
    opacity: 0.95;
    filter: none;
  }

  .service-card-copy {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 1;
  }

  .service-card-media {
    display: block;
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 136px;
    margin-top: 0.75rem;
    opacity: 1;
    transform: none;
    filter: saturate(1) brightness(0.95);
  }

  .service-card-quote {
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
    margin-top: 0.68rem;
  }

  .service-card-quote:hover,
  .service-card-quote:focus-visible {
    transform: translateY(-2px) scale(1.02);
  }

  .service-card-more {
    display: none;
  }

  .service-card:hover > .service-card-graphic {
    animation: none;
    transform: none;
    filter: none;
    opacity: 0.95;
  }

  .service-card:hover {
    transform: none;
  }

  .service-card:hover .service-card-media,
  .service-card:focus-within .service-card-media {
    transform: none;
    filter: saturate(1) brightness(0.95);
  }

  .service-card:hover .service-card-media img,
  .service-card:focus-within .service-card-media img {
    transform: scale(1.04);
  }

  .testimonials-carousel {
    padding: 1rem 2.7rem 0.82rem;
  }

  .testimonials-viewport {
    min-height: 338px;
  }

  .testimonial-postcard {
    grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
    min-height: 338px;
    height: 338px;
  }

  .testimonial-postcard-body {
    padding: 0.9rem 4.2rem 0.9rem 0.85rem;
  }

  .testimonial-postcard-eagle {
    top: 18px;
    right: 22px;
    width: 48px;
    height: 48px;
    font-size: 1.24rem;
  }

  .simulator-section {
    padding: 2rem 1rem 3rem;
  }

  .simulator-card {
    padding: 1rem;
  }

  .simulator-phone-row {
    grid-template-columns: minmax(132px, 1fr) auto minmax(150px, 1fr);
    gap: 0.48rem;
  }

  .simulator-questions {
    grid-template-columns: 1fr;
  }

  .passport-ribbons {
    height: 82px;
    transform: translateX(-50%) translateY(8px);
  }

  .passport-center-hanger {
    top: 24px;
    width: 120px;
    height: 78px;
  }

  .passport-center-hanger-pin {
    width: 7px;
    height: 8px;
  }

  .passport-center-hanger-stem {
    top: 6px;
    width: 3px;
    height: 66px;
  }

  .passport-center-hanger-bar {
    width: 76px;
    height: 8px;
  }

  .passport-center-hanger-bar::before {
    top: -5px;
    width: 9px;
    height: 5px;
  }

  .visa-ribbon {
    width: 252vw;
    left: -78vw;
    height: 32px;
    font-size: 0.82rem;
  }

  .visa-ribbon-top {
    transform: rotate(4.2deg) translateY(-10px);
  }

  .visa-ribbon-bottom {
    transform: rotate(-4.2deg) translateY(10px);
  }

  .visa-ribbon-item {
    font-size: 0.82rem;
  }

  .visa-ribbon-item-logo img {
    height: 14px;
    opacity: 0.56;
  }

  .visa-ribbon-track {
    gap: 0.42rem;
    padding: 0 1rem;
  }
}

@media (max-width: 860px) {
  body {
    padding-top: 164px;
  }

  .top-bar-inner {
    min-height: auto;
    padding: 0.45rem 0.7rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.35rem 0.5rem;
    max-width: 100%;
  }

  .contact-cluster {
    order: 1;
    flex: 0 0 100%;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.32rem 0.5rem;
  }

  .contact-divider {
    display: none;
  }

  .contact-item {
    font-size: 0.73rem;
    white-space: normal;
    overflow-wrap: anywhere;
    text-align: center;
    line-height: 1.25;
  }

  .lang-switch {
    order: 2;
    align-self: center;
  }

  .eval-cta {
    order: 3;
    margin: 0;
    font-size: 0.69rem;
    padding: 0.4rem 0.78rem;
    max-width: calc(100vw - 1.2rem);
  }

  .nav-inner {
    height: 84px;
  }

  .logo-image {
    height: 72px;
  }

  .nav-menu {
    top: 175px;
    max-height: calc(100vh - 187px);
  }
}

@media (max-width: 680px) {
  .lang-notice {
    top: 8px;
  }

  .lang-notice-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
  }

  .lang-notice-actions {
    width: 100%;
    justify-content: stretch;
  }

  .lang-notice-btn {
    flex: 1 1 auto;
    text-align: center;
  }

  body {
    padding-top: 170px;
  }

  .top-bar-inner {
    min-height: auto;
    padding: 0.55rem 0.85rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.4rem 0.5rem;
  }

  .contact-cluster {
    order: 1;
    flex: 0 0 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .lang-switch {
    order: 2;
    align-self: center;
  }

  .contact-divider {
    display: none;
  }

  .contact-item {
    font-size: 0.74rem;
  }

  .eval-cta {
    order: 3;
    width: auto;
    min-width: 0;
    text-align: center;
    margin: 0;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 14px;
  }

  .logo-image {
    height: 68px;
  }

  .nav-menu {
    top: 184px;
    left: 0.85rem;
    right: 0.85rem;
    padding: 0.68rem;
    max-height: calc(100vh - 196px);
  }

  .hero-main {
    min-height: clamp(540px, 76vh, 740px);
    background-position: 66% center;
  }

  .hero-content {
    padding: 2.2rem 1rem 2.7rem;
  }

  .hero-content h1 {
    font-size: clamp(2.1rem, 11.8vw, 3.5rem);
  }

  .hero-copy {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .hero-btn {
    width: min(100%, 320px);
    text-align: center;
  }

  .services-groups {
    gap: 1.15rem;
    margin-top: 1.35rem;
  }

  .services-group {
    gap: 0.75rem;
  }

  .services-group-row {
    gap: 1.15rem;
  }

  .services-group-row-banner-item {
    padding: 0;
  }

  .services-group-mobile-header {
    padding: 0;
  }

  .services-group-header-featured {
    min-height: auto;
    padding: 0;
    gap: 0.3rem;
  }

  .services-group-title {
    font-size: clamp(1.22rem, 6.2vw, 1.55rem);
  }

  .services-group-copy {
    max-width: 32ch;
    font-size: 0.9rem;
  }

  .services-group-cards,
  .services-group-cards-four,
  .services-group-cards-three,
  .services-group-cards-single {
    grid-template-columns: minmax(0, 320px);
    gap: 0.82rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 0.82rem;
  }

  .service-card {
    min-height: auto;
    padding: 0.95rem 0.85rem 1rem;
  }

  .service-card-head {
    font-size: 1.06rem;
  }

  .service-card-copy {
    font-size: 0.84rem;
    max-width: 30ch;
  }

  .service-card-graphic {
    width: 68px;
    height: 68px;
    margin-bottom: 0.6rem;
  }

  .service-card-media {
    height: 124px;
    margin-top: 0.68rem;
  }

  .service-card-quote {
    margin-top: 0.58rem;
    padding: 0.4rem 0.86rem;
    font-size: 0.76rem;
    min-width: 170px;
    max-width: 100%;
    white-space: nowrap;
  }

  .service-card-more {
    display: none;
  }

  .testimonials-carousel {
    padding: 0.6rem 2.15rem 0.35rem;
  }

  .testimonials-stack {
    display: none;
  }

  .testimonials-nav {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    font-size: 1.08rem;
  }

  .testimonials-nav:hover,
  .testimonials-nav:focus-visible {
    transform: translateY(-50%) scale(1.02);
  }

  .testimonials-nav-prev {
    left: 0;
  }

  .testimonials-nav-next {
    right: 0;
  }

  .testimonials-viewport {
    min-height: 0;
    margin-bottom: 0;
  }

  .testimonials-dots {
    margin-top: 0.9rem;
  }

  .testimonial-postcard {
    grid-template-columns: 1fr;
    min-height: auto;
    height: auto;
    border-radius: 16px;
  }

  .testimonial-postcard-media {
    min-height: 188px;
    border-right: none;
    border-bottom: 1px solid rgba(10, 49, 97, 0.12);
    border-radius: 10px 10px 0 0;
  }

  .testimonial-postcard-body {
    padding: 0.8rem 0.85rem 0.9rem;
    border-radius: 0 0 10px 10px;
  }

  .testimonial-postcard-eagle {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    font-size: 1.02rem;
  }

  .testimonial-postcard-quote {
    font-size: 0.92rem;
  }

  .testimonial-postcard-name {
    font-size: 0.85rem;
  }

  .testimonial-postcard-route {
    font-size: 0.73rem;
    letter-spacing: 0.04em;
  }

  .simulator-lead {
    font-size: 0.94rem;
  }

  .simulator-card {
    margin-top: 1rem;
    padding: 0.85rem;
    border-radius: 14px;
  }

  .simulator-field {
    padding: 0.68rem;
  }

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

  .simulator-phone-row {
    grid-template-columns: 1fr;
    gap: 0.46rem;
  }

  .simulator-phone-dial {
    justify-content: flex-start;
    width: fit-content;
    min-width: 72px;
    height: 40px;
  }

  .simulator-label {
    font-size: 0.84rem;
  }

  .simulator-input,
  .simulator-select {
    font-size: 0.9rem;
    padding: 0.66rem 0.75rem;
  }

  .simulator-btn,
  .simulator-whatsapp {
    width: 100%;
    text-align: center;
    font-size: 0.88rem;
  }

  .simulator-section::before,
  .testimonials-section::before {
    opacity: 0.3;
    background-size: 86px 86px, 102px 102px;
    background-position: 0 0, 44px 30px;
  }

  .service-modal {
    padding: 0.75rem;
  }

  .service-modal-dialog {
    width: min(100%, calc(100vw - 1rem));
    border-radius: 16px;
  }

  .service-modal-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }

  .service-modal-content {
    padding: 0.85rem 0.85rem 1rem;
  }

  .service-modal-copy {
    font-size: 0.93rem;
  }

  .passport-section {
    padding: 1.5rem 0.85rem 2.4rem;
  }

  .passport-ribbons {
    height: 68px;
    transform: translateX(-50%) translateY(6px);
  }

  .passport-center-hanger {
    top: 18px;
    width: 90px;
    height: 56px;
  }

  .passport-center-hanger-pin {
    width: 5px;
    height: 7px;
  }

  .passport-center-hanger-stem {
    top: 5px;
    width: 2px;
    height: 48px;
  }

  .passport-center-hanger-bar {
    width: 62px;
    height: 6px;
    border-radius: 1px;
  }

  .passport-center-hanger-bar::before {
    top: -4px;
    width: 8px;
    height: 4px;
  }

  .visa-ribbon {
    width: 272vw;
    left: -88vw;
    height: 26px;
    font-size: 0.72rem;
    letter-spacing: 0.015em;
  }

  .visa-ribbon-top {
    transform: rotate(3.4deg) translateY(-8px);
  }

  .visa-ribbon-bottom {
    transform: rotate(-3.4deg) translateY(8px);
  }

  .visa-ribbon-item {
    font-size: 0.7rem;
  }

  .visa-ribbon-item-logo img {
    height: 12px;
    opacity: 0.52;
  }

  .visa-ribbon-track {
    gap: 0.36rem;
    padding: 0 0.75rem;
  }

  .passport-shell {
    border-radius: 16px;
    padding: 0.75rem;
    margin-top: 40px;
  }

  .passport-shell::before {
    left: 1rem;
    right: 1rem;
  }

  .passport-copy {
    padding: 0.65rem 0.45rem 0.5rem;
  }

  .passport-copy h2 {
    font-size: clamp(1.25rem, 7vw, 1.7rem);
  }

  .passport-copy p {
    font-size: 0.95rem;
  }

  .passport-cta {
    width: 100%;
  }

  .passport-visual {
    min-height: 250px;
  }

  .passport-book {
    min-height: 278px;
  }

  .passport-visa-banner {
    --banner-left-zone: 31%;
    --banner-right-zone: 114px;
    height: 64px;
    padding: 0.45rem 0.52rem;
    grid-template-columns: var(--banner-left-zone) minmax(0, 1fr) minmax(88px, var(--banner-right-zone));
    gap: 0.34rem;
  }

  .passport-visa-chip {
    font-size: 0.72rem;
  }

  .passport-visa-country {
    font-size: 0.52rem;
    letter-spacing: 0.03em;
    text-align: left;
    padding-left: 0.42rem;
    max-width: 16ch;
    line-height: 1.15;
  }

  .passport-visa-address {
    font-size: 0.41rem;
    letter-spacing: 0.01em;
    max-width: 10ch;
    line-height: 1.12;
  }

  .passport-logo-center {
    top: 70px;
  }

  .passport-logo-center img {
    height: 34px;
  }

  .passport-page {
    padding: 5.15rem 0.58rem 0.66rem;
  }

  .passport-page-left {
    padding-top: 6.7rem;
    padding-right: 0.72rem;
  }

  .passport-page-value {
    font-size: 0.67rem;
  }

  .passport-page-right .passport-page-value {
    font-size: 0.61rem;
  }

  .passport-page-right {
    padding-left: 0.84rem;
    padding-right: 0.6rem;
  }

  .passport-visa-row {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 0.35rem;
  }

  .passport-visa-fields-tight .passport-visa-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.16rem;
  }

  .passport-visa-fields-tight .passport-visa-row dt {
    font-size: 0.42rem;
  }

  .passport-visa-fields-tight .passport-visa-row dd {
    font-size: 0.56rem;
    line-height: 1.22;
  }

  .passport-visa-row dt {
    font-size: 0.48rem;
  }

  .passport-visa-row dd {
    font-size: 0.62rem;
  }

  .passport-mrz {
    font-size: 0.5rem;
    letter-spacing: 0.04em;
  }

  .passport-page-note {
    font-size: 0.55rem;
  }

  .passport-signature-line {
    font-size: 0.58rem;
  }

  .passport-signature-role {
    font-size: 0.46rem;
    letter-spacing: 0.02em;
  }

  .passport-signature {
    max-width: calc(100% - 3.4rem);
  }

  .passport-seal {
    right: 0.45rem;
    bottom: 0.4rem;
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 1024px) {
  .site-footer {
    padding: 0;
  }

  .footer-inner {
    border-radius: 0;
    padding: 1.25rem 1rem 1.5rem;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: start;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .footer-brand-logo {
    width: clamp(170px, 46vw, 230px);
    height: auto;
  }

  .footer-tagline {
    flex: none;
  }

  .footer-bottom {
    gap: 0.75rem;
  }

  .footer-legal {
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .site-footer {
    padding: 0;
  }

  .footer-inner {
    border-radius: 0;
    padding: 1rem 0.85rem 1.35rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-disclaimer-chip {
    font-size: 0.64rem;
  }

  .footer-title {
    font-size: 0.72rem;
  }

  .footer-links {
    margin-top: 0.65rem;
    gap: 0.56rem;
  }

  .footer-links a,
  .footer-social-link {
    font-size: 0.94rem;
  }

  .footer-legal-links {
    gap: 0.8rem;
  }

  .footer-copy,
  .footer-legal-links a {
    font-size: 0.92rem;
  }

  .footer-motto {
    font-size: 0.95rem;
    transform: rotate(-0.25deg);
  }

  .floating-actions {
    right: 16px;
    bottom: 80px;
    gap: 0.5rem;
  }

  .floating-wa.Btn,
  .floating-top {
    width: 46px;
    height: 46px;
  }

  .floating-wa.Btn:hover,
  .floating-wa.Btn:focus-visible {
    width: 136px;
  }

  .floating-wa.Btn .socialSvg {
    width: 23px;
    height: 23px;
  }

  .floating-wa.Btn .text {
    font-size: 0.95rem;
  }

  .floating-top svg {
    width: 18px;
    height: 18px;
  }
}

.passport-section {
  position: relative;
  padding: clamp(2.6rem, 6vw, 4.4rem) 1rem clamp(2.8rem, 6vw, 4.8rem);
  background:
    radial-gradient(circle at 10% 14%, rgba(201, 164, 77, 0.08), transparent 34%),
    radial-gradient(circle at 86% 80%, rgba(34, 102, 172, 0.1), transparent 32%),
    linear-gradient(180deg, #eef4fb 0%, #dfeaf8 100%);
  overflow: hidden;
}

.passport-panel {
  position: relative;
  z-index: 3;
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1.45rem, 4.6vw, 3rem);
  border-radius: 34px;
  border: 1px solid rgba(10, 49, 97, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(244, 248, 255, 0.92));
  box-shadow: 0 30px 70px rgba(10, 49, 97, 0.14);
  backdrop-filter: blur(16px);
}

.passport-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.72), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.passport-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.96fr);
  gap: clamp(1.9rem, 4vw, 3.45rem);
  align-items: center;
}



.passport-section .passport-eyebrow {
  margin-bottom: 1rem;
  padding: 0.42rem 1rem;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}

.passport-section .passport-copy h2 {
  font-size: clamp(2.05rem, 4vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #112f59;
}

.passport-copy-lead,
.passport-copy-body {
  max-width: 33ch;
  color: #2f4968;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.65;
}

.passport-copy-lead {
  margin-top: 1.4rem;
}

.passport-copy-body {
  margin-top: 0.9rem;
}

.passport-section .passport-list {
  margin-top: 1.55rem;
  gap: 0.88rem;
}

.passport-section .passport-list li {
  padding-left: 1.8rem;
  color: #18365a;
  font-size: 1rem;
  font-weight: 700;
}

.passport-section .passport-list li::before {
  top: 0.38rem;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(145deg, #f0cc7a, #c79637);
  box-shadow: 0 4px 10px rgba(199, 150, 55, 0.24);
}

.passport-section .passport-cta {
  margin-top: 1.6rem;
  min-width: 286px;
  min-height: 50px;
  border-radius: 14px;
  padding: 0.88rem 1.3rem;
  font-size: 1rem;
  box-shadow: 0 16px 28px rgba(9, 40, 73, 0.18);
}

.passport-card {
  margin: 0;
  width: min(100%, 680px);
  justify-self: center;
  align-self: center;
  margin-right: 0;
}

.passport-card-shell {
  position: relative;
  width: 100%;
  padding: clamp(1.45rem, 2.8vw, 2rem);
  border-radius: 30px;
  border: 1px solid rgba(34, 87, 146, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 250, 255, 0.96));
  box-shadow: 0 28px 54px rgba(10, 49, 97, 0.14);
  overflow: hidden;
}

.passport-card-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 86% 16%, rgba(63, 118, 186, 0.14), transparent 30%),
    radial-gradient(circle at 10% 88%, rgba(213, 183, 104, 0.1), transparent 26%);
  pointer-events: none;
}

.passport-card-shell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  z-index: 2;
  background: linear-gradient(90deg, #1f7be0, #0f4f9c 70%, #0b376b 100%);
}

.passport-card-shell > * {
  position: relative;
  z-index: 1;
}

.passport-card-top {
  display: grid;
  justify-items: center;
  padding: 0 0 1.3rem;
  border-bottom: 1px solid rgba(17, 47, 89, 0.1);
}

.passport-card-title {
  margin: 0 auto 1.15rem;
  width: fit-content;
  padding: 0.45rem 0.82rem;
  border-radius: 999px;
  background: rgba(17, 47, 89, 0.06);
  color: #34537b;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.passport-card-profile {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  width: 100%;
  text-align: center;
}

.passport-portrait-frame {
  position: relative;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1;
  margin: 0 auto;
}

.passport-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid rgba(248, 251, 255, 0.98);
  box-shadow: 0 20px 40px rgba(12, 47, 89, 0.14);
}

.passport-verified {
  position: absolute;
  right: 4px;
  bottom: 8px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 24px rgba(10, 49, 97, 0.12);
}

.passport-verified::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(34, 87, 146, 0.12);
}

.passport-verified svg {
  position: relative;
  width: 34px;
  height: 34px;
}

.passport-verified svg path:first-child {
  fill: #2a7fe0;
}

.passport-verified svg path:last-child {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.passport-card-points {
  margin: 0 auto;
  max-width: 560px;
  padding: 1.35rem 0 1.2rem;
  list-style: none;
  display: grid;
  gap: 0.86rem;
}

.passport-card-points li {
  position: relative;
  padding-left: 2.15rem;
  color: #19365a;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.passport-card-points li::before {
  content: "";
  position: absolute;
  left: 0.1rem;
  top: 0.48rem;
  width: 9px;
  height: 9px;
  border: 1.5px solid #d0a23d;
  border-radius: 999px;
  background: rgba(208, 162, 61, 0.08);
}

.passport-card-footer {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  padding: 1.2rem 0 0.2rem;
  border-top: 1px solid rgba(17, 47, 89, 0.1);
  text-align: center;
}

.passport-card-brandline {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: center;
  color: #1d3a60;
  font-size: clamp(1.05rem, 1.75vw, 1.4rem);
  line-height: 1.25;
}

.passport-card-flag {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.passport-card-flag img {
  display: block;
  width: 1.55rem;
  height: auto;
}

.passport-card-dot {
  color: #5f7692;
  font-weight: 700;
}

.passport-card-brandline strong {
  font-weight: 800;
}

.passport-card-rating-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: center;
}

.passport-card-stars {
  color: #d0a23d;
  font-size: 1.24rem;
  letter-spacing: 0.14em;
  line-height: 1;
}

.passport-card-rating {
  margin: 0;
  color: #5c708a;
  font-size: 1rem;
  font-weight: 600;
}

.passport-card-rating::before {
  content: none;
}

@media (max-width: 1024px) {
  .passport-section {
    padding: 2.4rem 1rem 3.2rem;
  }

  .passport-panel {
    border-radius: 28px;
    padding: 1.1rem 1.25rem;
  }

  .passport-layout {
    grid-template-columns: 1fr;
    gap: 1.45rem;
  }

  .passport-section .passport-copy {
    padding: 0.3rem 0.2rem 0.1rem;
  }

  .passport-section .passport-copy h2 {
    max-width: 13ch;
    font-size: clamp(1.95rem, 5.8vw, 2.9rem);
  }

  .passport-copy-lead,
  .passport-copy-body {
    max-width: 100%;
  }

  .passport-card {
    width: 100%;
    max-width: 680px;
    justify-self: center;
  }

  .passport-card-shell {
    padding: 1.35rem;
  }

  .passport-card-profile {
    grid-template-columns: 1fr;
    justify-items: center;
  }

}

@media (max-width: 680px) {
  .passport-panel {
    border-radius: 20px;
    padding: 0.9rem 1rem;
  }

  .passport-section .passport-eyebrow {
    font-size: 0.68rem;
    padding: 0.38rem 0.82rem;
  }

  .passport-section .passport-copy h2 {
    max-width: 100%;
    font-size: clamp(1.75rem, 9vw, 2.35rem);
  }

  .passport-copy-lead,
  .passport-copy-body {
    font-size: 0.99rem;
    line-height: 1.58;
  }

  .passport-section .passport-list li {
    font-size: 0.95rem;
    padding-left: 1.5rem;
  }

  .passport-section .passport-list li::before {
    width: 12px;
    height: 12px;
  }

  .passport-section .passport-cta {
    width: 100%;
    min-width: 0;
  }

  .passport-card-shell {
    padding: 1.15rem;
    border-radius: 24px;
  }

  .passport-card-title {
    font-size: 0.72rem;
  }

  .passport-portrait-frame {
    max-width: 182px;
  }

  .passport-verified {
    width: 50px;
    height: 50px;
    right: 2px;
    bottom: 6px;
  }

  .passport-verified svg {
    width: 28px;
    height: 28px;
  }

  .passport-card-rating {
    font-size: 0.95rem;
  }

  .passport-card-points li {
    padding-left: 1.75rem;
  }

  .passport-card-points li::before {
    top: 0.42rem;
    width: 8px;
    height: 8px;
  }

  .passport-card-brandline,
  .passport-card-rating-row {
    justify-content: center;
  }

  .passport-card-stars {
    font-size: 1.1rem;
  }

}

/* Interpreter Page */
.interpreter-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(201, 164, 77, 0.08), transparent 26%),
    radial-gradient(circle at 86% 16%, rgba(33, 103, 177, 0.1), transparent 28%),
    linear-gradient(180deg, #f3f7fc 0%, #e5eef9 52%, #dce8f5 100%);
}

.interpreter-page .top-bar-inner {
  justify-content: space-between;
}

.interpreter-hero,
.interpreter-benefits,
.interpreter-process,
.interpreter-cta-section {
  padding: clamp(2.8rem, 6vw, 5rem) 1rem;
}

.interpreter-hero {
  padding-top: clamp(3.2rem, 7vw, 5.6rem);
}

.interpreter-hero-inner,
.interpreter-section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.interpreter-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.74fr);
  gap: clamp(1.5rem, 4vw, 3.2rem);
  align-items: center;
}

.interpreter-eyebrow {
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.92rem;
  border-radius: 999px;
  background: rgba(17, 47, 89, 0.08);
  color: #35527b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.interpreter-hero-copy h1 {
  margin: 0;
  max-width: 11ch;
  color: #11315d;
  font-size: clamp(2.5rem, 5.5vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.interpreter-hero-lead {
  margin: 1.4rem 0 0;
  max-width: 35ch;
  color: #47627f;
  font-size: clamp(1.04rem, 1.5vw, 1.2rem);
  line-height: 1.72;
}

.interpreter-hero-actions {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.95rem;
  flex-wrap: wrap;
}

.interpreter-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.78rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(12, 58, 106, 0.16);
  color: #103764;
  background: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(10, 49, 97, 0.08);
  transition: transform 0.26s ease, box-shadow 0.26s ease, background-color 0.26s ease;
}

.interpreter-secondary-link:hover,
.interpreter-secondary-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 28px rgba(10, 49, 97, 0.12);
  outline: none;
}

.interpreter-hero-list {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.95rem;
}

.interpreter-hero-list li {
  position: relative;
  padding-left: 1.55rem;
  color: #173a66;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.interpreter-hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d6af4f, #c6922d);
  box-shadow: 0 0 0 5px rgba(214, 175, 79, 0.14);
}

.interpreter-hero-card {
  position: relative;
  padding: clamp(1.3rem, 3vw, 1.8rem);
  border-radius: 28px;
  border: 1px solid rgba(17, 47, 89, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 254, 0.92)),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 56px rgba(10, 49, 97, 0.12);
  overflow: hidden;
}

.interpreter-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 18%, rgba(53, 105, 174, 0.14), transparent 24%),
    radial-gradient(circle at 16% 92%, rgba(201, 164, 77, 0.12), transparent 26%);
  pointer-events: none;
}

.interpreter-hero-card > * {
  position: relative;
  z-index: 1;
}

.interpreter-card-kicker {
  margin: 0;
  color: #5a7391;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.interpreter-card-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
}

.interpreter-card-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 0.9rem 0.95rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 47, 89, 0.08);
}

.interpreter-card-index {
  min-width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(180deg, #1c4f87, #113964);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
}

.interpreter-card-item p,
.interpreter-card-note {
  margin: 0;
  color: #35506f;
  font-size: 0.98rem;
  line-height: 1.55;
}

.interpreter-card-note {
  margin-top: 1rem;
}

.interpreter-benefits,
.interpreter-process {
  padding-top: 0;
}

.interpreter-benefit-grid,
.interpreter-process-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.interpreter-benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.interpreter-benefit-card,
.interpreter-step {
  padding: 1.35rem 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(17, 47, 89, 0.1);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 32px rgba(10, 49, 97, 0.08);
}

.interpreter-benefit-number,
.interpreter-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(18, 68, 122, 0.12), rgba(18, 68, 122, 0.2));
  color: #12447a;
  font-size: 0.94rem;
  font-weight: 800;
}

.interpreter-benefit-card h3,
.interpreter-step h3 {
  margin: 1rem 0 0.5rem;
  color: #12345f;
  font-size: 1.22rem;
  line-height: 1.2;
}

.interpreter-benefit-card p,
.interpreter-step p {
  margin: 0;
  color: #4d6782;
  font-size: 0.98rem;
  line-height: 1.6;
}

.interpreter-process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.interpreter-cta-section {
  padding-top: 0;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.interpreter-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: 30px;
  background: linear-gradient(135deg, #11315d, #1b4b86 58%, #215c9d);
  box-shadow: 0 26px 56px rgba(10, 49, 97, 0.18);
}

.interpreter-cta-copy .interpreter-eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

.interpreter-cta-copy h2,
.interpreter-cta-copy p {
  margin: 0;
  color: #ffffff;
}

.interpreter-cta-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.interpreter-cta-copy p {
  margin-top: 0.8rem;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.6;
}

.interpreter-cta-actions {
  display: grid;
  gap: 0.8rem;
  justify-items: end;
}

.interpreter-page .site-footer {
  margin-top: 0;
}

@media (max-width: 1024px) {
  .interpreter-page .top-bar-inner {
    justify-content: center;
  }

  .interpreter-hero-inner,
  .interpreter-benefit-grid,
  .interpreter-process-grid,
  .interpreter-cta-card {
    grid-template-columns: 1fr;
  }

  .interpreter-hero-copy h1 {
    max-width: 12ch;
  }

  .interpreter-cta-actions {
    justify-items: start;
  }
}

@media (max-width: 680px) {
  .interpreter-hero,
  .interpreter-benefits,
  .interpreter-process,
  .interpreter-cta-section {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .interpreter-hero {
    padding-top: 2.2rem;
  }

  .interpreter-hero-copy h1 {
    font-size: clamp(2.05rem, 11vw, 3.35rem);
  }

  .interpreter-hero-lead,
  .interpreter-hero-list li,
  .interpreter-card-item p,
  .interpreter-card-note,
  .interpreter-benefit-card p,
  .interpreter-step p,
  .interpreter-cta-copy p {
    font-size: 0.96rem;
  }

  .interpreter-hero-actions {
    gap: 0.7rem;
  }

  .interpreter-secondary-link,
  .interpreter-hero-actions .hero-btn,
  .interpreter-cta-actions .hero-btn {
    width: 100%;
  }

  .interpreter-cta-actions {
    justify-items: stretch;
  }
}
