.advantages-page {
  min-height: 100vh;
  color: #1a1a1a;
  background: #fff;
  overflow-x: clip;
}

.advantages-main {
  overflow: hidden;
}

.adv-shell {
  width: min(75rem, calc(100% - 2rem));
  margin: 0 auto;
}

.nav-link {
  position: relative;
  padding: 0.5rem 0;
  color: #666;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link__text {
  color: #666;
}

.nav-link:hover .nav-link__text,
.nav-link.is-active .nav-link__text {
  color: #266fe8;
}

.nav-link__underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.125rem;
  height: 0.125rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #5cc4f1, #6c63f0);
}

.adv-hero {
  position: relative;
  padding: 1.75rem 0 0.75rem;
}

.adv-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.adv-hero__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(48px);
}

.adv-hero__orb--left {
  left: -18%;
  top: 19%;
  width: 28rem;
  height: 13rem;
  background: rgba(9, 169, 243, 0.18);
}

.adv-hero__orb--right {
  right: -8%;
  top: 6%;
  width: 24rem;
  height: 20rem;
  background: linear-gradient(180deg, rgba(125, 121, 255, 0.22), rgba(201, 227, 255, 0.12));
}

.adv-hero__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 76%, rgba(121, 233, 255, 0.2), transparent 28%),
    radial-gradient(circle at 78% 46%, rgba(216, 237, 255, 0.85), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 72%, #ffffff 100%);
}

.adv-hero__shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.adv-hero__copy {
  max-width: 58rem;
}

.adv-hero__copy h1,
.adv-hero__copy h2 {
  margin: 0;
  color: #1a1a1a;
  font-size: clamp(1.75rem, 3.4vw, 2.625rem);
  line-height: 1.24;
  font-weight: 800;
  letter-spacing: 0;
}

.adv-hero__copy h2 {
  margin-top: 0.35rem;
}

.adv-hero__copy p {
  margin: 0.7rem 0 0;
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
}

.adv-hero__media {
  position: relative;
  width: min(60rem, 100%);
  margin-top: 1.15rem;
  min-height: 31.5rem;
}

.adv-hero__media::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 16%;
  bottom: 9%;
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.08);
}

.adv-hero__video-card {
  position: absolute;
  left: 11%;
  top: 22%;
  width: 54%;
  min-width: 0;
  margin-left: 0;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  background: #fff;
  overflow: hidden;
}

.adv-hero__window-dots {
  display: flex;
  gap: 0.5rem;
  padding: 1rem 1rem 0.75rem 1rem;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
}

.dot-red {
  background: #ff5f57;
}

.dot-yellow {
  background: #febc2e;
}

.dot-green {
  background: #28c840;
}

.adv-hero__video-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 0 1rem 1rem;
  border-radius: 1.1rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 20%, rgba(47, 123, 255, 0.4), transparent 38%),
    linear-gradient(180deg, #121a39 0%, #0e1124 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.adv-hero__video-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.66) saturate(0.92);
  opacity: 0.96;
}

.adv-hero__video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.22));
}

.adv-hero-video.is-playing [data-hero-play] {
  opacity: 0;
  pointer-events: none;
}

.adv-video-toast {
  position: fixed;
  left: 50%;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: min(22rem, calc(100vw - 2rem));
  padding: 0.95rem 1.25rem;
  border-radius: 0.65rem;
  border-left: 0.25rem solid #3b82f6;
  background: rgba(255, 255, 255, 0.98);
  color: #222;
  font-size: 0.9375rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -120%);
  transition: opacity 0.2s ease, transform 0.25s ease;
}

.adv-video-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 1.75rem);
}

.adv-video-toast__icon {
  width: 1rem;
  height: 1rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #222;
  color: #fff;
  flex: 0 0 auto;
}

.adv-video-toast__icon svg {
  width: 0.7rem;
  height: 0.7rem;
}

.adv-hero__play {
  width: 4.5rem;
  height: 4.5rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.adv-hero__play svg {
  width: 2rem;
  height: 2rem;
  margin-left: 0.2rem;
  fill: #266fe8;
}

.adv-hero__tag {
  position: absolute;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  background: linear-gradient(90deg, rgba(72, 139, 255, 0.76), rgba(110, 94, 255, 0.84));
  box-shadow: 0 10px 24px rgba(35, 66, 158, 0.22);
  white-space: nowrap;
}

.adv-hero__tag--one {
  left: 10%;
  top: 18%;
}

.adv-hero__tag--two {
  right: 12%;
  top: 16%;
}

.adv-hero__tag--three {
  left: 12%;
  bottom: 18%;
}

.adv-hero__tag--four {
  right: 8%;
  bottom: 20%;
}

.adv-hero__stat-card {
  position: absolute;
  right: 8.5%;
  top: 2%;
  width: 34%;
  min-width: 0;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(44, 80, 157, 0.16);
}

.adv-hero__stat-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.adv-hero__stat-ai {
  position: absolute;
  left: 50%;
  top: -1%;
  width: 9.35rem;
  height: 9.35rem;
  transform: translateX(-50%);
}

.adv-hero__stat-content {
  position: relative;
  z-index: 1;
  padding: 8.6rem 1.55rem 1.5rem;
  text-align: left;
}

.adv-hero__stat-content h3 {
  margin: 0;
  color: #1a1a1a;
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 800;
}

.adv-hero__stat-content p {
  margin: 0.7rem 0 1.2rem;
  color: #999;
  font-size: 0.875rem;
  line-height: 1.6;
}

.adv-hero__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.05rem 1rem;
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.metric__value {
  display: flex;
  align-items: baseline;
  gap: 0.08rem;
  color: #266fe8;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}

.metric__value span {
  font-size: 1rem;
  font-weight: 700;
}

.metric__label {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.45rem;
  color: #666;
  font-size: 0.8rem;
}

.metric__label img {
  width: 0.9rem;
  height: 0.9rem;
  flex: 0 0 auto;
}

.adv-section {
  position: relative;
  padding: 2.75rem 0;
}

.adv-section--overlap {
  margin-top: -2.25rem;
}

.adv-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 18px 42px rgba(45, 92, 167, 0.08);
}

.adv-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.adv-card__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
  padding: 3rem 3rem 3.25rem;
}

.adv-card__grid--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.adv-card__copy {
  padding-left: 0.5rem;
}

.adv-card__title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.adv-card__title img {
  width: 5rem;
  height: 5rem;
  flex: 0 0 auto;
}

.adv-card__title h2 {
  margin: 0;
  color: #1a1a1a;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.25;
  font-weight: 800;
}

.adv-card__copy p {
  max-width: 34rem;
  margin: 1.6rem 0 0;
  color: #666;
  font-size: 0.9375rem;
  line-height: 1.9;
  text-align: justify;
}

.adv-bullet-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.adv-bullet-list--tight {
  gap: 0.9rem;
}

.adv-bullet-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #333;
  font-size: 1rem;
  font-weight: 600;
}

.adv-bullet-list li img {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
}

.adv-card__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.adv-card__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.human-panel,
.availability-panel,
.automation-panel {
  position: relative;
  width: min(31rem, 100%);
}

.human-panel__shell,
.availability-panel__shell,
.automation-panel__shell {
  width: 100%;
  height: auto;
  display: block;
}

.human-panel__content,
.availability-panel__content,
.automation-panel__content {
  position: absolute;
  inset: 0;
}

.human-panel__content {
  padding: 4.3rem 2rem 1.6rem;
  text-align: center;
}

.human-panel__content h3 {
  margin: 0;
  color: #1a1a1a;
  font-size: 1.15rem;
  line-height: 1.3;
  font-weight: 800;
}

.human-panel__content p {
  margin: 0.45rem 0 0;
  color: #8a93a4;
  font-size: 0.72rem;
}

.human-panel__rings {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.human-panel__rings div {
  padding-top: 1.1rem;
}

.human-panel__rings strong {
  display: block;
  color: #2d78ff;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
}

.human-panel__rings span {
  display: block;
  margin-top: 0.35rem;
  color: #6b7788;
  font-size: 0.72rem;
  line-height: 1.3;
}

.human-panel__tags {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.human-panel__tags span,
.human-panel__features span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  background: #eff5ff;
  color: #4b79ef;
  font-size: 0.68rem;
  font-weight: 700;
}

.human-panel__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 1.45rem;
}

.human-panel__stats div {
  padding: 0.35rem 0 0;
  text-align: center;
}

.human-panel__stats strong {
  display: block;
  color: #266fe8;
  font-size: 1.05rem;
  font-weight: 800;
}

.human-panel__stats span {
  display: block;
  color: #9aa4b1;
  font-size: 0.62rem;
}

.human-panel__features {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.1rem;
  flex-wrap: wrap;
}

.human-panel__button {
  width: min(17rem, 72%);
  margin: 1rem auto 0;
  padding: 0.58rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #31c3ed 0%, #5e6df2 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.availability-panel__content {
  padding: 3.2rem 1.85rem 1.4rem;
}

.availability-panel__compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.availability-panel__compare div {
  min-height: 8.4rem;
  padding: 1.1rem 1rem 0.9rem;
  border-radius: 1rem;
  background: rgba(244, 247, 255, 0.92);
  box-shadow: 0 10px 24px rgba(45, 93, 167, 0.08);
  text-align: center;
}

.availability-panel__compare .is-active {
  background: linear-gradient(180deg, rgba(54, 111, 233, 0.96), rgba(83, 93, 248, 0.98));
  color: #fff;
}

.availability-panel__compare span {
  display: block;
  color: #666;
  font-size: 0.78rem;
  font-weight: 700;
}

.availability-panel__compare .is-active span {
  color: rgba(255, 255, 255, 0.9);
}

.availability-panel__compare strong {
  display: block;
  margin-top: 1.2rem;
  color: #4b79ef;
  font-size: 2.3rem;
  line-height: 1;
  font-weight: 800;
}

.availability-panel__compare .is-active strong {
  color: #fff;
}

.availability-panel__compare small {
  display: block;
  margin-top: 0.25rem;
  color: #8c95a5;
  font-size: 0.68rem;
}

.availability-panel__compare .is-active small {
  color: rgba(255, 255, 255, 0.86);
}

.availability-panel__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1rem;
  margin-top: 1.6rem;
}

.availability-panel__stats div {
  text-align: center;
}

.availability-panel__stats strong {
  display: block;
  color: #266fe8;
  font-size: 1.2rem;
  font-weight: 800;
}

.availability-panel__stats span {
  display: block;
  margin-top: 0.2rem;
  color: #8a95a3;
  font-size: 0.68rem;
}

.automation-panel__content {
  padding: 2.05rem 1.75rem 1.3rem;
  text-align: center;
}

.automation-panel__content h3 {
  margin: 0;
  color: #1a1a1a;
  font-size: 1.15rem;
  line-height: 1.3;
  font-weight: 800;
}

.automation-panel__content p {
  margin: 0.35rem 0 0;
  color: #8a93a4;
  font-size: 0.72rem;
}

.automation-panel__flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem 0.4rem;
  margin-top: 1.4rem;
}

.automation-panel__flow div {
  min-height: 3.25rem;
  padding: 0.35rem 0.2rem;
  border-radius: 999px;
  background: rgba(239, 245, 255, 0.95);
  box-shadow: 0 8px 18px rgba(61, 104, 178, 0.08);
}

.automation-panel__flow div:nth-child(1),
.automation-panel__flow div:nth-child(2),
.automation-panel__flow div:nth-child(3),
.automation-panel__flow div:nth-child(4) {
  grid-row: 1;
}

.automation-panel__flow div:nth-child(5) {
  grid-column: 1;
  grid-row: 2;
}

.automation-panel__flow div:nth-child(6) {
  grid-column: 2;
  grid-row: 2;
}

.automation-panel__flow div:nth-child(7) {
  grid-column: 3;
  grid-row: 2;
}

.automation-panel__flow strong {
  display: block;
  color: #266fe8;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.automation-panel__flow span {
  display: block;
  margin-top: 0.18rem;
  color: #6c7787;
  font-size: 0.66rem;
}

.automation-panel__summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.automation-panel__summary div {
  padding-top: 0.45rem;
}

.automation-panel__summary img {
  width: 1.65rem;
  height: 1.65rem;
  margin: 0 auto 0.35rem;
}

.automation-panel__summary strong {
  display: block;
  color: #266fe8;
  font-size: 0.92rem;
  font-weight: 800;
}

.automation-panel__summary span {
  display: block;
  margin-top: 0.15rem;
  color: #8893a3;
  font-size: 0.62rem;
  line-height: 1.3;
}

.adv-card__visual--tower img {
  max-width: 26.5rem;
}

.adv-card__visual--availability img,
.adv-card__visual--flow img {
  max-width: 31rem;
}

.cross-tower {
  position: relative;
  width: min(26rem, 100%);
}

.cross-tower__bg {
  width: 100%;
  height: auto;
  display: block;
}

.cross-tower__avatar {
  position: absolute;
  left: 50%;
  top: 6.5%;
  width: 7.75rem;
  height: 7.75rem;
  transform: translateX(-50%);
}

.cross-tower__caption {
  position: absolute;
  left: 50%;
  top: 31%;
  transform: translateX(-50%);
  color: #3f6ee8;
  font-size: 0.95rem;
  font-weight: 700;
}

.cross-tower__tiles {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.7rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.cross-tower__tiles div {
  min-height: 4.2rem;
  padding: 0.8rem 0.75rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 20px rgba(54, 105, 180, 0.08);
}

.cross-tower__tiles img {
  width: 1.1rem;
  height: 1.1rem;
  margin-bottom: 0.25rem;
}

.cross-tower__tiles span {
  display: block;
  color: #266fe8;
  font-size: 0.8rem;
  font-weight: 700;
}

.cross-tower__tiles small {
  display: block;
  margin-top: 0.18rem;
  color: #8893a3;
  font-size: 0.68rem;
  line-height: 1.3;
}

.adv-footer {
  padding: 3rem 0 1.5rem;
  border-top: 1px solid #edf0f4;
  background: linear-gradient(180deg, #fff 0%, #fafcff 100%);
}

.adv-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr 1fr;
  gap: 2rem;
  align-items: start;
}

.adv-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.adv-footer__logo img {
  width: 2.5rem;
  height: 2.5rem;
}

.adv-footer__logo strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a1a1a;
}

.adv-footer__logo span {
  display: block;
  color: #6f7a86;
  font-size: 0.7rem;
}

.adv-footer__brand p,
.adv-footer__about p {
  margin: 0;
  color: #666;
  font-size: 0.875rem;
  line-height: 1.8;
}

.adv-footer h3 {
  margin: 0 0 1.1rem;
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 700;
}

.adv-footer__links ul,
.adv-footer__contact ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.adv-footer__links ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1.4rem;
}

.adv-footer__links a,
.adv-footer__contact a,
.adv-footer__contact span {
  color: #666;
  font-size: 0.875rem;
  line-height: 1.6;
}

.adv-footer__links a:hover,
.adv-footer__contact a:hover {
  color: #266fe8;
}

.adv-footer__contact li {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 0.8rem;
}

.adv-footer__contact li span:first-child {
  flex: 0 0 auto;
  opacity: 0.72;
}

.adv-footer__legal {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid #edf0f4;
  text-align: center;
  color: #8b95a2;
  font-size: 0.75rem;
}

.adv-footer__legal p {
  margin: 0 0 0.45rem;
}

.adv-footer__legal div {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.adv-float {
  position: fixed;
  right: 1rem;
  top: 50%;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  pointer-events: none;
  user-select: none;
  transform: translateY(-50%);
}

.adv-float__contact-btn {
  width: 4.125rem;
  height: 4.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  border-radius: 0.75rem;
  background: linear-gradient(180deg, #30c9f3 0%, #266fe8 100%);
  box-shadow: 0 12px 24px rgba(38, 111, 232, 0.22);
}

.adv-float__contact-btn img {
  width: 1.75rem;
  height: 1.75rem;
  filter: brightness(0) invert(1);
}

.adv-float__contact-btn span {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}

.adv-float__stack {
  width: 4.125rem;
  border-radius: 0.75rem;
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  background: rgba(230, 230, 230, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  pointer-events: auto;
}

.adv-float__item {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: auto;
}

.adv-float__item--plain {
  color: inherit;
}

.adv-float__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.adv-float__icon--ceo {
  gap: 0;
}

.adv-float__icon--ceo svg {
  width: 3.625rem;
  height: 3.625rem;
}

.adv-float__icon-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.08rem;
  color: #333;
  font-size: 0.64rem;
  line-height: 1;
  text-align: center;
}

.adv-float__icon-text span:first-child {
  font-weight: 700;
}

.adv-float__icon img {
  width: 1.75rem;
  height: 1.75rem;
}

.adv-float__stack .adv-float__icon img {
  padding: 0.125rem;
  filter: grayscale(100%) brightness(0.2);
}

.adv-float__icon span {
  color: #333;
  font-size: 0.75rem;
  line-height: 1;
}

.adv-float__icon-text span:last-child {
  white-space: nowrap;
}

.adv-float__top {
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: #666;
  font-size: 1rem;
}

.adv-float__tooltip {
  position: absolute;
  right: 120%;
  top: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 8.75rem;
  padding: 0.75rem;
  border: 1px solid #edf0f4;
  border-radius: 0.85rem;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateX(0.5rem);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.adv-float__tooltip img {
  width: 7.5rem;
  height: 7.5rem;
  object-fit: contain;
}

.adv-float__tooltip-title {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #333;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
}

.group:hover .adv-float__tooltip,
.group:focus-within .adv-float__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.adv-float__contact {
  pointer-events: auto;
}

@media (max-width: 1023px) {
  .adv-hero__media {
    min-height: auto;
  }

  .adv-hero__media::before {
    display: none;
  }

  .adv-hero__video-card {
    position: relative;
    width: 100%;
    min-width: 0;
    left: auto;
    top: auto;
  }

  .adv-hero__stat-card {
    position: relative;
    right: auto;
    top: auto;
    width: min(30rem, 100%);
    margin: -1rem auto 0;
  }

  .adv-card__grid,
  .adv-footer__grid {
    grid-template-columns: 1fr;
  }

  .adv-card__copy {
    padding-left: 0;
  }

  .adv-card__visual {
    order: 2;
  }

  .adv-card__visual--tower img,
  .adv-card__visual--availability img,
  .adv-card__visual--flow img {
    max-width: 100%;
  }

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

@media (max-width: 640px) {
  .adv-shell {
    width: min(100% - 1rem, 75rem);
  }

  .adv-hero {
    padding-top: 1.25rem;
  }

  .adv-hero__copy h1,
  .adv-hero__copy h2 {
    font-size: 1.6rem;
  }

  .adv-hero__copy p {
    font-size: 0.875rem;
  }

  .adv-hero__media {
    margin-top: 0.85rem;
  }

  .adv-hero__video-stage {
    margin: 0 0.5rem 0.5rem;
  }

  .adv-hero__tag {
    font-size: 0.65rem;
    padding: 0.3rem 0.7rem;
  }

  .adv-hero__tag--one {
    left: 6%;
    top: 14%;
  }

  .adv-hero__tag--two {
    right: 8%;
    top: 14%;
  }

  .adv-hero__tag--three {
    left: 7%;
    bottom: 14%;
  }

  .adv-hero__tag--four {
    right: 5%;
    bottom: 13%;
  }

  .adv-hero__stat-card {
    width: 100%;
    min-width: 0;
  }

  .adv-hero__stat-ai {
    width: 7rem;
    height: 7rem;
  }

  .adv-hero__stat-content {
    padding-top: 6.8rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .adv-hero__metrics {
    gap: 0.8rem 0.7rem;
  }

  .metric__value {
    font-size: 2rem;
  }

  .adv-section {
    padding: 1.9rem 0;
  }

  .adv-section--overlap {
    margin-top: 0;
  }

  .adv-card__grid {
    gap: 1.3rem;
    padding: 1.5rem;
  }

  .adv-card__title {
    gap: 0.8rem;
  }

  .adv-card__title img {
    width: 3.75rem;
    height: 3.75rem;
  }

  .adv-card__title h2 {
    font-size: 1.35rem;
  }

  .adv-card__copy p {
    margin-top: 1rem;
    font-size: 0.875rem;
    line-height: 1.8;
  }

  .adv-bullet-list {
    gap: 0.8rem;
    margin-top: 1.2rem;
  }

  .adv-bullet-list li {
    font-size: 0.9rem;
    align-items: flex-start;
  }

  .adv-bullet-list li img {
    margin-top: 0.1rem;
  }

  .cross-tower__caption {
    font-size: 0.82rem;
  }

  .cross-tower__tiles {
    left: 0.85rem;
    right: 0.85rem;
    bottom: 1rem;
    gap: 0.55rem;
  }

  .cross-tower__tiles div {
    min-height: 3.75rem;
    padding: 0.6rem 0.55rem;
    border-radius: 0.75rem;
  }

  .adv-footer {
    padding-top: 2.2rem;
  }

  .adv-footer__links ul {
    grid-template-columns: 1fr;
  }

  .adv-footer__legal div {
    gap: 0.5rem;
  }

  .adv-float {
    right: 0.5rem;
    gap: 0.5rem;
  }

  .adv-float__stack {
    width: 3.5rem;
    gap: 0.85rem;
  }

  .adv-float__contact-btn {
    width: 3.5rem;
    height: 3.9rem;
  }

  .adv-float__contact-btn span,
  .adv-float__icon span {
    font-size: 0.68rem;
  }

  .adv-float__icon-text {
    font-size: 0.58rem;
  }

  .adv-float__tooltip {
    display: none;
  }
}
