/* Screen 3 - End Scene Styles */

/* Initial state for animated elements - prevent flash before animation */
.screen-3__ellipse-1,
.screen-3__ellipse-2,
.screen-3__phone,
.screen-3__family,
.screen-3__family-new-home,
.screen-3__logo-section-content,
.screen-3__website,
.screen-3__question,
.screen-3__feature,
.screen-3__cta-button {
  opacity: 0;
}

.screen-3__ellipse-1,
.screen-3__ellipse-2,
.screen-3__phone,
.screen-3__family {
  transform: translateY(100%);
}

.screen-3__family-new-home {
  transform: scale(0);
}

.screen-3__container {
  display: flex;
  background: #eeffff;
  border-image: linear-gradient(
      90deg,
      rgba(3, 49, 75, 1) 0%,
      rgba(15, 184, 93, 1) 100%
    )
    1;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 1200px;
}

/* Background decorative elements */
.screen-3__ellipse-1 {
  position: absolute;
  width: 375px;
  height: 375px;
  background: #33cc6e;
  border-radius: 50%;
  top: 58px;
  left: 93px;
  z-index: 1;
}

.screen-3__ellipse-2 {
  position: absolute;
  width: 360px;
  height: 325px;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  border-radius: 50%;
  top: 89px;
  left: 115px;
  z-index: 2;
}

/* Images */
.screen-3__family-new-home {
  position: absolute;
  width: 318px;
  height: 254px;
  background-image: url("https://cdn.xuno.co/marketing/banner/family-new-home.png");
  background-size: cover;
  background-position: center;
  top: 10px;
  left: 131px;
  z-index: 3;
}

.screen-3__phone {
  position: absolute;
  width: 154px;
  height: 316px;
  background-image: url("https://cdn.xuno.co/marketing/banner/phone-2.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 0px;
  left: 35px;
  z-index: 4;
}

.screen-3__family {
  position: absolute;
  width: 335px;
  height: 225px;
  background-image: url("https://cdn.xuno.co/marketing/banner/family-3.png");
  background-size: cover;
  background-position: center;
  top: 17px;
  left: 137px;
  z-index: 5;
}

/* Logo and website section */
.screen-3__logo-section {
  max-width: 40%;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 12px;
  z-index: 6;
}

.screen-3__logo-section-content {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  bottom: 20px;
  left: 240px;
}

.screen-3__xuno-logo {
  position: relative;
}

.screen-3__xuno-logo img {
  max-width: 148px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.screen-3__website {
  display: flex;
  align-items: center;
  gap: 8px;
}

.screen-3__website-icon {
  width: 19px;
  height: 19px;
}

.screen-3__website span {
  color: #ffffff;
  font-family: "Sen", sans-serif;
  font-weight: 500;
  font-size: 19.6px;
  line-height: 1.2;
}

/* Content section */
.screen-3__content {
  display: flex;
  width: 60%;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  z-index: 6;
}

.screen-3__question,
.screen-3__feature {
  display: flex;
  align-items: center;
  gap: 8px;
}

.screen-3__checkmark-container {
  width: 35px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.screen-3__checkmark {
  width: 28px;
  height: 28px;
  background: rgba(15, 184, 93, 0.25);
  border-radius: 50%;
  position: relative;
}

.screen-3__checkmark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 29px;
  height: 26px;
  background: #0fb85d;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z' fill='%230FB85D'/%3E%3C/svg%3E")
    no-repeat center;
  mask-size: contain;
}

.screen-3__question span,
.screen-3__feature span {
  color: #444444;
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.31;
}

/* Call to action button */
.screen-3__cta-button {
  width: 100%;
  background: #0fb85d;
  border-radius: 10px;
  padding: 7px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 44px;
  z-index: 6;
}

.screen-3__phone-icon {
  width: 24px;
  height: 24px;
}

.screen-3__phone-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.screen-3__cta-text,
.screen-3__phone-number {
  color: #ffffff;
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.31;
}

