/* Statrt Custom Fonts */

@font-face {
  font-family: "Baloo 2";
  src: url("../fonts/baloo/Baloo2-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Baloo 2";
  src: url("../fonts/baloo/Baloo2-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Baloo 2";
  src: url("../fonts/baloo/Baloo2-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Baloo 2";
  src: url("../fonts/baloo/Baloo2-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Baloo 2";
  src: url("../fonts/baloo/Baloo2-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Basenji";
  src: url("../fonts/basenji/Basenji_Variable_Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* End Custom Fonts */

/* Start Global CSS */

:root {
  --white: #ffffff;
  --black: #000000;
  --color-head: #181818;
  --color-text: #6a707c;
  --color-primary: #f27421;
  --color-secondary: #479ad5;
  --color-yellow: #fccd07;
  --color-light-orange: #fff5ef;

  --footerbg: #1f374a;
  --font-primary: "Basenji";
  --font-secondary: "Baloo 2";

  --fs-14: clamp(12px, 1vw, 14px);
  --fs-16: clamp(14px, 1.2vw, 16px);
  --fs-18: clamp(16px, 1.5vw, 18px);
  --fs-24: clamp(20px, 2vw, 24px);
  --fs-30: clamp(26px, 3vw, 30px);
  --fs-58: clamp(32px, 4.5vw, 58px);
  --fs-78: clamp(42px, 6.5vw, 78px);

  --radius30: 30px;
}

@media (max-width: 1366px) {
  :root {
    --fs-58: 40px;
    --fs-24: 20px;
  }
}

@media (max-width: 1199px) {
  :root {
    --fs-58: 35px;
    --fs-24: 18px;
  }
}

@media (max-width: 991px) {
  :root {
    --fs-58: 32px;
    --fs-24: 16px;
  }
}

@media (max-width: 767px) {
  :root {
    --fs-58: 30px;
    --fs-24: 16px;
  }
}

/* End Global CSS */

/* ======================
         HEADER
      ====================== */
.header {
  position: relative;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  /* border-bottom: 1px solid #eee; */
}

.header__container {
  max-width: 100%;
  margin: 0 auto;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.header__logo img {
  height: auto;
}

.header__logo {
  flex: 1;
}

/* NAV */
.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header__nav .nav__list {
  display: flex;
  gap: 40px;
  list-style: none;
  padding: 0;
}

.header__nav .nav__list a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  font-size: var(--fs-18);
  transition: all 0.3s ease;
}

.header__nav .nav__list .current-menu-item a,
.nav__list a:hover {
  color: var(--color-secondary);
  font-weight: 700;
  text-shadow: 0 0 0.5px currentColor, 0 0 0.5px currentColor;
}

/* BUTTON */
.header__actions .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 0;
  border-radius: 12px;
  font-size: var(--fs-14);
  text-decoration: none;
  height: 42px;
  background: #1f374a;
  font-weight: 600;
}

.header__actions .btn--yellow {
  border-bottom: 2px solid var(--color-yellow);
  color: #fff;
}

.header__actions .btn--dark {
  border-bottom: 2px solid #f17523;
  color: #fff;
}

/* ACTIONS */
.header__actions {
  display: flex;
  gap: 12px;
  flex: 1;
  justify-content: end;
}

/* TOGGLE */
.header__toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
}

.header__toggle span {
  width: 24px;
  height: 2px;
  background: #000;
  margin-bottom: 5px;
}

.header__toggle span:first-child {
  width: 18px;
}

.header__toggle span:last-child {
  width: 18px;
}

/* MOBILE MENU DESIGN */

.mobile-menu {
  position: fixed;
  right: -100%;
  top: 0;
  width: 85%;
  max-width: 340px;
  height: 100%;
  background: #f9fafb;
  transition: 0.3s ease;
  z-index: 1001;
  border-left: 3px solid var(--color-primary);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu__content {
  padding: 20px 0;
}

/* Close button */
.mobile-menu__close {
  background: none;
  border: none;
  font-size: 30px;
  font-weight: 600;
  float: right;
  color: #666;
  position: absolute;
  right: 0;
  top: -3px;
}

/* Menu list */
.mobile-menu__list {
  list-style: none;
  margin-top: 40px;
  padding: 0;
}

.mobile-menu__list li {
  padding: 30px 0;
  border-bottom: 1px solid #e5e7eb;
  text-align: center;
}

.mobile-menu__list li:first-child {
  border-top: 1px solid #e5e7eb;
}

.mobile-menu__list li a {
  text-decoration: none;
  color: var(--color-text);
  font-size: var(--fs-18);
}

/* Active item */
.mobile-menu__list .current-menu-item a {
  color: var(--color-secondary);
  font-weight: 700;
}

/* Buttons */

.mobile-menu__actions {
  width: 183px;
  margin: 45px auto 0;
}

.mobile-menu__actions .btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 0;
  border-radius: 12px;
  font-size: var(--fs-14);
  height: 42px;
  background: #1f374a;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
}

/* Parent App */
.mobile-menu__actions .btn--yellow {
  border-bottom: 2px solid var(--color-yellow);
  color: #fff;
  margin-bottom: 50px;
}

/* Child App */
.mobile-menu__actions .btn--dark {
  border-bottom: 2px solid #f17523;
  color: #fff;
}

/* OVERLAY */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 1000;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ======================
         Footer 
      ====================== */

.footer {
  background: #1f374a;
  position: relative;
  /* overflow: hidden; */
  color: #fff;
}

/* Cloud Shape */
.footer::before {
  content: "";
  position: absolute;
  top: -120px;
  /* adjust slightly more */
  left: 0;
  width: 100%;
  height: 166px;
  /* exact figma */
  background: url("../images/footer-cloud.svg") no-repeat top center;
  background-size: cover;
  z-index: 2;
}

/* TOP AREA */
.footer__top {
  position: relative;
  padding: 70px 20px 80px;
  text-align: center;
}

.footer__content {
  position: relative;
  z-index: 2;
  max-width: 90%;
  margin: 0 auto;
}

/* ZINY TEXT */
.footer__logo {
  width: 276px;
  min-width: 160px;
  margin: 0 auto;
  margin-bottom: 10px;
}

/* DESCRIPTION */
.footer__text {
  font-size: 44.4px;
  margin-bottom: 60px;
  line-height: 57px;
  font-family: "Basenji";
  margin-top: 20px;
  font-weight: 400;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.25);
}

/* ORANGE TAGS */
.footer__text span {
  background: var(--color-primary);
  padding: 9px 19px 5px 19px;
  border-radius: 30px;
  color: #fff;
  font-weight: 400;
  font-size: 36px;
  line-height: 42px;
  border-bottom: 2px solid var(--color-yellow);
  transform: rotate(-3deg);
  display: inline-block;
}

.footer__text span:last-child {
  transform: rotate(3deg);
}

/* .footer__menu {
          position: relative;
          margin-top: 30px;
      } */

/* left line */
/* .footer__menu::before,
      .footer__menu::after {
          content: "";
          position: absolute;
          top: 50%;
          width: 25%;
          border-top: 2px dashed var(--color-yellow);
      } */

.footer__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Lines */
.footer__line {
  flex: 1;
  border-top: 2px dashed var(--color-yellow);
  max-width: 420px;
}

.footer__menu::before {
  left: 0;
}

.footer__menu::after {
  right: 0;
}

.footer__menu-list {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__menu-list a {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 25px;
  border-radius: 30px;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
}

.footer__bottom {
  background: var(--color-secondary);
  padding: 0px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* COPYRIGHT */
.footer__copy {
  font-size: var(--fs-18);
  color: #fff;
  margin: 0;
  font-weight: 400;
  line-height: 20px;
}

.footer__social {
  display: flex;
}


.footer__social a {
  width: 60px;
  height: 60px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  text-decoration: none;
}

.footer__social a:hover {
  background: var(--color-primary);
  border-radius: 16px;
}

.footer__social a:not(:last-child) {
  margin-right: 10px;
}

.footer__top-img {
  position: relative;
  width: 1064px;
  max-width: 90%;
  margin: 0 auto;
}

.footer__top-img img {
  width: 1064px;
  max-width: 90%;
}

.footer__top-img:before {
  content: "";
  background-image: url("../images/footer-star-orange.webp");
  display: block;
  background-repeat: no-repeat;
  width: 41px;
  height: 41px;
  position: absolute;
  background-size: contain;
  top: 18px;
  left: calc(50% + 60px);
  animation: rotateStar 4s linear infinite;
}

/* wrapper */
.footer__decor {
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  pointer-events: none;
}

/* common star */
.footer__decor .star {
  position: absolute;
  width: 24px;
  height: 24px;
  background: url("../images/footer-shape.webp") no-repeat center;
  background-size: contain;

  animation: rotateStar 4s linear infinite;
}

/* left star */
.footer__decor .star--left {
  left: 8%;
  top: 12px;
  width: 42px !important;
  height: 42px !important;
}

/* right star */
.footer__decor .star--right {
  right: 11%;
  top: -100px;
  width: 40px !important;
  height: 40px !important;
}

/* animation */
@keyframes rotateStar {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ======================
          Parent and child Popup css 
      ====================== */

body.popup-open {
  overflow: hidden;
  height: 100%;
}

/* ================= COMMON OVERLAY ================= */
.ziny-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: 0.3s ease;
}

.ziny-popup-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ================= ANIMATION ================= */
.ziny-popup-animate {
  position: relative;
  transform: scale(0.8);
  opacity: 0;
  transition: 0.3s ease;
}

.ziny-popup-overlay.active .ziny-popup-animate {
  /* transform: scale(1);*/
  opacity: 1;
}

/* ================= PARENT + CHILD BASE ============ */
.ziny-app-popup-parent,
.ziny-app-popup-child {
  width: 525px !important;
  min-height: 556px !important;
  background: #ffefe4 !important;
  border-radius: 60px !important;
  padding: 30px 25px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  z-index: 2 !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

/* ================= DASH BORDER ================= */
.ziny-app-popup-parent-border,
.ziny-app-popup-child-border {
  position: absolute !important;
  inset: 0px !important;
  border: 2px dashed #fccd07 !important;
  border-radius: 40px !important;
  transform: rotate(-5.5deg) !important;
}

/* ================= CLOSE ================= */
.ziny-app-popup-parent .ziny-popup-close,
.ziny-app-popup-child .ziny-popup-close {
  position: absolute !important;
  top: 30px !important;
  right: 30px !important;
  font-size: 37px !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  border: none !important;
  background: transparent !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  box-shadow: none !important;
}

/* ================= CONTENT ================= */
.ziny-app-content {
  text-align: center;
}

/* ICON */
.ziny-app-content .ziny-app-icon {
  width: 165px;
  margin-bottom: -20px;
}

/* TITLE */
.ziny-app-content h3 {
  font-size: 28px;
  line-height: 30px;
  font-weight: 600;
  font-family: "Baloo 2";
  margin-bottom: 10px;
  color: #181818;
}

/* TEXT */
.ziny-app-content p {
  font-size: 18px;
  color: #6a707c;
  font-weight: 500;
  font-family: "Baloo 2";
  max-width: 353px;
  margin: 0px auto 30px;
}

/* BUTTONS */
.ziny-app-btns {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.ziny-app-btns img {
  width: 200px;
}

/* ======================
           Home Page 
      ====================== */

/* =========== HERO BANNER SECTION ============ */

.hero {
  position: relative;
  width: 100%;
  background: var(--color-secondary);
  border-radius: 40px;
  overflow: visible;
  padding: 80px 0 0;
  max-width: 97%;
  margin: 0 auto;
}

/* BACKGROUND */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/banner-bg.webp") no-repeat center;
  background-size: cover;
  z-index: 0;
  border-radius: 40px 40px 0 0;
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: 900px;
}

/* CENTER BLOCK (MAIN FIX) */
.hero .hero__center {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 1110px;
  max-width: 90%;
}

/* TITLE */
.hero .hero__title {
  font-size: 78px;
  line-height: 96px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 30px;
  margin-top: 20px;
  font-family: "Basenji";
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.hero .hero__title span {
  background: var(--color-primary);
  padding: 15px 40px 5px;
  border-radius: 60px;
  font-size: 63px;
  line-height: 65px;
  transform: rotate(-3deg);
  display: inline-block;
  border-bottom: 3px solid var(--color-yellow);
  position: relative;
}

/* PHONES */
.hero .hero__phones img {
  /*   width: 995px; */
  width: 717px;
  max-width: 100%;
  animation: floatY 3.5s ease-in-out infinite;
  will-change: transform;
  /* margin-top: 40px; */
}

.hero .hero__phones.mobile-center-img {
  display: none;
}

.hero .hero__phones.desktop-center-img {
  display: block;
}

/* LEFT TEXT */
.hero .hero__left {
  position: absolute;
  left: 35px;
  bottom: 140px;
  width: 350px;
  color: #fff;
  font-size: 16px;
  line-height: 18px;
}

.hero .hero__left p {
  font-weight: 500;
}

/* RIGHT RATING */
.hero .hero__right {
  position: absolute;
  right: 30px;
  bottom: 110px;
}

.hero .hero__right img {
  width: 120px;
}

/* STARS */
.hero .hero__star {
  position: absolute;
  width: 20px;
  animation: rotateStar 4s linear infinite;
}

.hero .star1 {
  top: -20px;
  right: 0;
  width: 40px !important;
  transform: rotate(45deg);
}

.hero .star2 {
  top: 160px;
  right: 10%;
  width: 66px;
}

.hero .star3 {
  bottom: 220px;
  right: 27%;
  width: 44px;
}

.hero .star4 {
  top: 195px;
  left: 16%;
  width: 66px;
}

/* floating animation */

@keyframes floatY {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

/* =========== INTRO SECTION ============ */

.ziny-intro-section {
  width: 100%;
  padding: 180px 0px 150px;
  background: #fff;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
}

.ziny-intro-section:after {
  content: "";
  background: url("../images/ziny-intro-side.webp");
  display: block;
  width: 152px;
  height: 280px;
  position: absolute;
  bottom: 70px;
}

/* .ziny-intro-section *,
    .ziny-intro-section *::before,
    .ziny-intro-section *::after {
      box-sizing: border-box;
    } */

.ziny-intro-section .ziny-intro__container {
  max-width: 1462px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
}

.ziny-intro-section .ziny-intro__content {
  width: 50%;
  /* max-width: 560px; */
}

.ziny-intro-section .ziny-intro__kicker {
  color: #ff7a1a;
  font-size: 58px;
  line-height: 56px;
  font-weight: 700;
  margin: 0;
}

.ziny-intro-section .ziny-intro__title {
  color: #1a1a1a;
  font-size: 58px;
  line-height: 56px;
  font-weight: 700;
  margin: 0 0 25px;
}

.ziny-intro-section .ziny-intro__lead {
  color: #181818;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  margin: 0 0 30px;
  max-width: 550px;
}

.ziny-intro-section .ziny-intro__subhead {
  color: #3f8edc;
  font-size: 30px;
  line-height: 29px;
  font-weight: 600;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.ziny-intro-section .ziny-intro__subhead-icon {
  flex-shrink: 0;
  width: 29px;
  height: 29px;
  display: block;
  object-fit: contain;
}

.ziny-intro-section .ziny-intro__text {
  color: #6a707c;
  font-size: 20px;
  line-height: 28px;
  margin: 0 0 18px;
}

.ziny-intro-section .ziny-intro__btn {
  display: inline-block;
  margin-top: 10px;
  line-height: 0;
  text-decoration: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 12px;
  /* box-shadow: 0 4px 0 rgba(197, 90, 26, 0.55), 0 6px 14px rgba(255, 118, 36, 0.35);*/
}

.ziny-intro-section .ziny-intro__btn:focus-visible {
  outline: 3px solid #3f8edc;
  outline-offset: 4px;
}

.ziny-intro-section .ziny-intro__btn-img {
  display: block;
  width: 304px;
  max-width: 100%;
  height: auto;
  transition: 5s linear;
  cursor: pointer;
}

.ziny-intro-section .ziny-intro__btn-img:hover {
  transform: scale(1.05);
  transition: 5s linear;
}

.ziny-intro-section .ziny-intro__media {
  width: 50%;
  display: flex;
  justify-content: center;
}

.ziny-intro-section .ziny-intro__media img {
  width: 90%;
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========== BETTER HABITS SECTION ============ */

.bh-features-section {
  --bg: #ffefe4;
  --text: #171717;
  --muted: #4b4b4b;
  --bh-cloud-h: calc(100vw * 117 / 1920);
  padding-bottom: 150px;
  background: var(--bg);
  overflow: hidden;
  position: relative;
  padding-top: 90px;
  padding-left: 30px;
  padding-right: 30px;
}

.bh-features-section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: var(--bh-cloud-h);
  background: #ffffff;
  pointer-events: none;
  z-index: 1;
}

.bh-cloud-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
  z-index: 2;
  pointer-events: none;
}

.bh-features-section::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: var(--bh-cloud-h);
  background: #ffffff;
  pointer-events: none;
  z-index: 1;
}

.bh-cloud-divider-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
  z-index: 2;
  pointer-events: none;
}

.bh-mobile-divider {
  display: none;
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2;
  pointer-events: none;
  border: 0;
}

.bh-mobile-divider--top {
  top: 0;
}

.bh-mobile-divider--bottom {
  bottom: 0;
}

.bh-features-heading {
  margin-bottom: 70px;
  text-align: center;
  color: var(--text);
  font-weight: 700;
  line-height: 56px;
  letter-spacing: 0.2px;
  font-size: 56px;
}

.bh-features-wrap {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
}

.bh-features-heading>span {
  display: block;
}

.bh-features-heading .bh-highlight {
  color: #f27421;
}

.bh-features-slider-window {
  overflow: visible;
  box-sizing: border-box;
}

.bh-features-swiper.swiper {
  width: 100%;
  overflow: visible;
  padding-block: 4px;
  margin-inline: 0;
}

.bh-features-swiper .swiper-wrapper {
  align-items: stretch;
}

.bh-features-swiper .swiper-slide {
  height: auto;
  display: flex;
  box-sizing: border-box;
}

.bh-features-swiper .swiper-slide .bh-feature-card {
  flex: 1;
  width: 100%;
  max-width: none;
}

.bh-slider-nav {
  display: none;
}

.bh-feature-card {
  --card-bg: #ffe2d4;
  --card-border: #ff612d;
  --icon-bg: rgba(255, 255, 255, 0.4);
  --card-rotate: 0.5deg;
  --card-offset-y: -4px;

  box-sizing: border-box;
  position: relative;
  width: 100%;
  max-width: 427px;
  height: 284px;
  min-height: 0;
  margin-inline: auto;
  border-radius: 24px;
  padding: 36px 36px;
  background: var(--card-bg);
  transform-origin: 50% 50%;
  transform: translateY(var(--card-offset-y));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bh-feature-card::before {
  content: "";
  position: absolute;
  inset: -5px;
  border: 2px dashed var(--card-border);
  border-radius: 30px;
  pointer-events: none;
  transition: transform 0.3s ease;
  opacity: 1;
}

.bh-card-1::before {
  transform: rotate(2.5deg);
}

.bh-card-2::before {
  transform: rotate(-2.5deg);
}

.bh-card-3::before {
  transform: rotate(2.5deg);
}

.bh-card-4::before {
  transform: rotate(-2.5deg);
}

.bh-card-5::before {
  transform: rotate(2.5deg);
}

.bh-card-6::before {
  transform: rotate(-2.5deg);
}

.bh-feature-card h3 {
  margin: 18px 0 8px;
  color: #181818;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 600;
}

.bh-feature-card p {
  margin-top: 18px;
  color: #444;
  font-size: 18px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bh-icon-box {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  justify-items: center;
  margin-bottom: 28px;
  flex-shrink: 0;
}

.bh-icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.bh-card-1 {
  --card-bg: #ffe2d4;
  --card-border: #ff612d;
  --card-rotate: 0.5deg;
  --card-offset-y: -4px;
}

.bh-card-2 {
  --card-bg: #eaf5ff;
  --card-border: #479ad5;
  --card-rotate: -1deg;
  --card-offset-y: -8px;
}

.bh-card-3 {
  --card-bg: #fff8da;
  --card-border: #fccd07;
  --card-rotate: 0.4deg;
  --card-offset-y: -4px;
}

.bh-card-4 {
  --card-bg: #e8ffed;
  --card-border: #14cc3f;
  --card-rotate: -1.2deg;
  --card-offset-y: 4px;
}

.bh-card-5 {
  --card-bg: #f7f2ff;
  --card-border: #8e44f0;
  --card-rotate: 1deg;
  --card-offset-y: 2px;
}

.bh-card-6 {
  --card-bg: #eafbfc;
  --card-border: #00d0c4;
  --card-rotate: -0.5deg;
  --card-offset-y: 2px;
}

.bh-feature-card:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 0 14px 24px rgba(25, 25, 25, 0.11);
}

.bh-feature-card:hover::before {
  transform: rotate(0deg);
}

/* =========== WHY ZINY SECTIONS ============ */

.ziny-works {
  --ziny-accent: var(--color-primary, #f27421);
  --ziny-card-bd: #ffede4;
  --ziny-card-bg: #ffffff;
}

.ziny-parents {
  --ziny-accent: var(--color-secondary, #479ad5);
  --ziny-card-bd: #cfe7f5;
  --ziny-card-bg: #f4f9fd;
  padding-top: 0 !important;
}

.ziny-works,
.ziny-parents {
  width: 100%;
  padding: 90px clamp(16px, 4vw, 24px);
  background: #ffffff;
  overflow-x: clip;
  box-sizing: border-box;
}

.ziny-works .ziny-works__container,
.ziny-parents .ziny-parents__container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: start;
  justify-content: space-between;
  gap: clamp(20px, 3.6vw, 48px);
}

.ziny-works .ziny-works__content,
.ziny-parents .ziny-parents__content {
  flex: 0 1 550px;
  min-width: 0;
  max-width: min(100%, 550px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}

.ziny-works .ziny-works__content {
  order: 1;
}

.ziny-works .ziny-works__visual,
.ziny-parents .ziny-parents__visual {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ziny-works .ziny-works__visual {
  order: 2;
}

.ziny-works .ziny-works__title,
.ziny-parents .ziny-parents__title {
  margin: 25px 0 42px;
  font-weight: 700;
  line-height: 1.06;
  color: var(--color-head, #181818);
  font-size: 58px;
  line-height: 60px;
  letter-spacing: 0;
}

.ziny-works .ziny-works__highlight,
.ziny-parents .ziny-parents__highlight {
  color: var(--ziny-accent);
}

.ziny-works .ziny-works__list,
.ziny-parents .ziny-parents__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.ziny-works .ziny-works__item,
.ziny-parents .ziny-parents__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  width: 100%;
  padding: 23px 18px;
  min-height: 0;
  border: 1px solid var(--ziny-card-bd);
  border-radius: 12px;
  background: var(--ziny-card-bg);
}

.ziny-works .ziny-works__item {
  background: #fff9fb !important;
  border: 1px solid #ffbb8e !important;
}

.ziny-parents .ziny-parents__item {
  background: #edf6ff !important;
  border: 1px solid #c9e0f8 !important;
}

.ziny-works .ziny-works__icon,
.ziny-parents .ziny-parents__icon {
  flex-shrink: 0;
  width: 31px;
  height: 31px;
  display: block;
  line-height: 0;
}

.ziny-works .ziny-works__icon img,
.ziny-parents .ziny-parents__icon img {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
}

.ziny-works .ziny-works__text,
.ziny-parents .ziny-parents__text {
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 500;
  line-height: 1.35;
  font-size: clamp(14px, 1.35vw, 22px);
  color: var(--black, #000000);
}

.ziny-works .ziny-works__phone,
.ziny-parents .ziny-parents__phone {
  width: 100%;
  max-width: min(100%, 760px);
  margin: 0;
  position: relative;
}

.ziny-works .ziny-works__circle-wrap,
.ziny-parents .ziny-parents__circle-wrap {
  width: 100%;
  position: relative;
  display: inline-block;
}

.ziny-works .ziny-works__circle-img,
.ziny-parents .ziny-parents__circle-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  /* aspect-ratio: 903 / 851;*/
  aspect-ratio: 1 / 1;
  border-radius: 0;
  position: relative;
  z-index: 2;
}

/* BLUE GIF (Parents - left side) */
.ziny-parents__circle-wrap::before {
  content: "";
  position: absolute;

  top: 46%;
  left: 37%;
  width: 97%;
  height: 97%;
  transform: translate(-50%, -50%);
  background: url("../images/circle-blue.gif") no-repeat center/contain;
  z-index: 1;
  pointer-events: none;
}

/* ORANGE GIF (Children - right side) */
.ziny-works__circle-wrap::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 63%;
  width: 95%;
  height: 96%;
  transform: translate(-50%, -50%);
  background: url("../images/circle-orange.gif") no-repeat center/contain;
  z-index: 1;
  pointer-events: none;
}

/* =========== REWARDS SECTION ============ */

.rewards {
  position: relative;
  background: #fff7d3;
  padding: 60px 0 120px 0;
  overflow: visible;
  margin: 100px 0 40px 0;
}

/* ===== CLOUD TOP ===== */
.rewards::before {
  content: "";
  position: absolute;
  top: -55px;
  left: 0;
  width: 100%;
  height: 130px;

  background-image: url("../images/r-cloud-top.svg");
  background-repeat: repeat-x;
  background-position: center top;
  background-size: contain;

  z-index: 1;
}

/* ===== CLOUD BOTTOM ===== */
.rewards::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 0;
  width: 100%;
  height: 130px;
  background-image: url("../images/Subtract.webp");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  z-index: 1;
}

/* ⭐ STAR (FULL WIDTH POSITIONING) */

.rewards__star {
  position: absolute;
  top: -120px;
  left: calc(50% + 20px);
  z-index: 3;
}

.rewards__star img {
  width: 197px;
  animation: floatY 3.5s ease-in-out infinite;
}

/* CONTAINER */
.rewards__container {
  max-width: 1465px;
  margin: 0 auto;
  /* padding: 0 60px; */
  position: relative;
  z-index: 2;
  opacity: 1;
}

/* CONTENT */
.rewards__content {
  /* max-width: 520px; */

  max-width: 52%;
}

/* TITLE */
.rewards__title {
  font-size: 58px;
  line-height: 56px;
  color: #f27421;
  margin-bottom: 20px;
  margin-top: 0;
}

/* DESCRIPTION */
.rewards__desc {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: #181818;
}

/* TAG */
.rewards__tag {
  margin-top: 50px;
  font-size: 24px;
  line-height: 26px;
  font-weight: 600;
  color: #f27421;
  margin-bottom: 0;
}

/* ICONS */
.rewards__icons {
  display: flex;
  gap: 0px;
  margin-top: 15px;
}

.reward-item {
  text-align: center;
}

/* .reward-item img {
    width: 85px;
    height: 85px;
    padding: 18px;
    background: #fff;
    border-radius: 20px;
    border: 2px solid #F5C24C;
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
} */

.reward-item span {
  display: block;
  margin-top: -15px;
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  color: #181818;
}

/* 🔥 RIGHT IMAGE (MAIN FIX) */
.rewards__image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(50vw + 180px);
  max-width: 760px;
  z-index: 1;
}

.rewards__image img {
  width: 100%;
  height: auto;
  display: block;
}

.rewards__image img.desk-hand-img {
  display: block;
}

.rewards__image img.res-hand-img {
  display: none;
}

/* =========== TESTIMONIAl SECTIONS ============ */

.lbp-section {
  --lbp-text: #171717;
  --lbp-orange: #ff7f30;
  --lbp-box-img: url("../images/testimonial-box.png");
  --lbp-bubble-content-left: 36px;

  padding: 96px 20px 150px;
  background: #ffffff;
  overflow: hidden;
  position: relative;
}

.lbp-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.lbp-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px 24px;
  margin-bottom: 60px;
}

.lbp-title {
  margin: 0;
  padding: 0;
  font-size: 58px;
  line-height: 56px;
  font-weight: 700;
  letter-spacing: 0.15px;
  color: var(--lbp-text);
}

.lbp-title .lbp-highlight {
  color: var(--color-primary);
}

.lbp-slider-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  margin-left: auto;
}

.lbp-slider-btn {
  width: 76px;
  height: 38px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: grid;
  place-items: center;
}

.lbp-slider-btn img {
  width: 76px;
  height: auto;
  display: block;
  object-fit: contain;
  opacity: 0.85;
  filter: none;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.lbp-slider-btn:hover:not(.swiper-button-disabled) img,
.bh-slider-btn.bh-slider-btn-next:hover img {
  opacity: 1;
  /* filter: invert(54%) sepia(90%) saturate(1200%) hue-rotate(347deg) brightness(101%) contrast(101%); */
  filter: invert(116%) sepia(117%) saturate(1634%) hue-rotate(-376deg) brightness(80%) contrast(156%);
}

.lbp-slider-btn.swiper-button-disabled {
  opacity: 0.45;
  cursor: default;
}

.lbp-slider-btn:focus-visible {
  outline: 2px solid var(--lbp-orange);
  outline-offset: 3px;
}

.lbp-window {
  overflow: visible;
  margin: 0 -8px;
  padding: 16px 8px 36px;
}

.lbp-swiper.swiper {
  width: 100%;
  overflow: visible;
}

.lbp-swiper .swiper-wrapper {
  align-items: stretch;
}

.lbp-swiper .swiper-slide {
  height: auto;
  box-sizing: border-box;
}

.lbp-slide-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  min-height: 100%;
}

.lbp-card-shell {
  position: relative;
  width: 100%;
  padding-bottom: 0;
}

.lbp-card {
  box-sizing: border-box;
  position: relative;
  isolation: isolate;
  margin: 0;
  padding: 0;
  width: 100%;
  aspect-ratio: 440 / 268;
  border: none;
  background-color: transparent;
  background-image: var(--lbp-box-img);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  overflow: visible;
}

.lbp-card-inner {
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 28px 6% 96px var(--lbp-bubble-content-left);
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.lbp-quote-icon {
  position: absolute;
  top: -26px;
  right: clamp(22px, 7.5vw, 40px);
  width: clamp(64px, 14vw, 78px);
  height: auto;
  display: block;
  pointer-events: none;
  user-select: none;
  z-index: 3;
}

.lbp-stars {
  position: relative;
  z-index: 1;
  margin: 0 0 12px 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 0;
}

.lbp-star-icon {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.lbp-card-title {
  position: relative;
  z-index: 1;
  margin: 6px 0 6px 0;
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--lbp-text);
  line-height: 1.3;
}

.lbp-card-text {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.62;
  color: var(--lbp-text);
  flex: 1 1 auto;
}

.lbp-card-text p {
  margin: 0;
}

.lbp-author {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-top: -34px;
  padding-left: var(--lbp-bubble-content-left);
  padding-right: 8px;
  box-sizing: border-box;
}

.lbp-avatar-wrap {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: none;
}

.lbp-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.lbp-name {
  flex: 1 1 0%;
  min-width: 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--lbp-text);
  line-height: 1.35;
  margin: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* =========== MOBILE SLIDER SECTIONS ============ */

.ziny-slider {
  background: #f27421;
  padding: 100px 0;
  overflow: visible;
  text-align: center;
  position: relative;
}

.ziny-slider::before {
  content: "";
  position: absolute;
  top: -48px;
  left: 0;
  width: 100%;
  height: 130px;

  background-image: url("../images/ms-cloud-top.webp");
  background-repeat: repeat-x;
  background-position: center top;
  background-size: contain;

  z-index: 1;
}

.ziny-slider::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 130px;

  background-image: url("../images/ms-clound-bottom.webp");
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: contain;

  z-index: 1;
}

/* TITLE */
.ziny-slider__title {
  font-size: 58px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 60px;
  max-width: 1050px;
  margin: 0 auto;
  line-height: 56px;
}

.ziny-slider__title span {
  color: #ffd54a;
}

/* DESKTOP SLIDER */
.zinySwiper {
  overflow: hidden;
  margin-top: 50px;
}

.zinySwiper .swiper-slide {
  width: 260px;
}

.zinySwiper .swiper-slide img {
  width: 100%;
}

/* =========== CTA SECTIONS ============ */

.ziny-cta-section {
  background: #fffae4;
  padding: 190px 20px 120px;
}

/* CONTAINER */

.ziny-cta-section .ziny-container {
  max-width: 1538px;
  margin: 0 auto;
}

/* CARD */

.ziny-cta-section .ziny-habits-card {
  position: relative;

  padding: 130px 100px;
  text-align: center;
  color: #fff;

  /* DESKTOP BG */
  background-image: url("../images/cta-bg.webp");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

/* CHARACTER */

.ziny-cta-section .ziny-character {
  position: absolute;
  top: -76px;
  left: 80px;
  /* animation: floatY 3.5s ease-in-out infinite; */
}

.ziny-cta-section .ziny-character img {
  width: 220px;
}

/* CONTENT */

.ziny-cta-section .ziny-habits-card .ziny-content {
  max-width: 900px;
  margin: 0 auto;
  padding-right: 100px;
}

/* TITLE */

.ziny-cta-section .ziny-title {
  font-size: 78px;
  line-height: 100px;
  color: #fff;
  margin-bottom: 30px;
  margin-top: -20px;
  font-weight: 400;
  font-family: "Basenji";
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.ziny-cta-section .ziny-title span {
  background: var(--color-primary);
  padding: 15px 40px 5px;
  border-radius: 60px;
  font-size: 63px;
  line-height: 65px;
  transform: rotate(-3deg);
  display: inline-block;
  border-bottom: 3px solid var(--color-yellow);
  position: relative;
}

.ziny-cta-section .ziny-title .star {
  position: absolute;
  top: -10px;
  right: -15px;
  width: 28px;
}

/* SUBTITLE */

.ziny-cta-section .ziny-subtitle {
  font-size: 22px;
  line-height: 28px;
  margin-top: 10px;
  margin-bottom: 60px;
  opacity: 0.9;
}

/* BUTTONS */

.ziny-cta-section .ziny-app-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.ziny-cta-section .ziny-app-btn {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 10px 20px 10px 0;
  border-radius: 14px;

  font-size: 20px;
  font-weight: 600;
  height: 70px;
  text-decoration: none;
}

.ziny-cta-section .ziny-app-btn img {
  width: 115px;
  margin-left: -10px;
}

.ziny-cta-section .ziny-app-btn.parent {
  background: #1e2a38;
  color: #fff;
  border-bottom: 3px solid #ffd54c;
}

.ziny-cta-section .ziny-app-btn.child {
  background: #1e2a38;
  color: #fff;
  border-bottom: 3px solid #ff7a00;
}

.ziny-cta-section .hero__star {
  position: absolute;
  width: 20px;
  animation: rotateStar 4s linear infinite;
}

.ziny-cta-section .star1 {
  top: -20px;
  right: 0;
  width: 40px !important;
  transform: rotate(45deg);
}

/* =========== FAQ SECTIONS ============ */

.ziny-faqs {
  position: relative;
  background: #fff;
  /* match your figma bg */
  padding: 80px 20px 60px;
  overflow: visible;
}

/* CLOUD SHAPE */
.ziny-faqs::before {
  content: "";
  position: absolute;
  top: -105px;
  left: 0;
  width: 100%;
  height: 115px;

  background-image: url("../images/faq-cloud.webp");

  background-size: cover;
  background-repeat: no-repeat;
}

.ziny-faq-decor {
  position: absolute;
  right: 0;
  top: 70px;
  width: 170px;
  z-index: 1;
  pointer-events: none;
}

.ziny-faqs .ziny-container {
  max-width: 1268px;
  margin: 0 auto;
}

/* Title */
.ziny-faq-title {
  text-align: center;
  font-size: 58px;
  line-height: 56px;
  font-family: "Baloo 2";
  font-weight: 700;
  margin-bottom: 40px;
  margin-top: 0;
}

.ziny-faq-title span {
  color: #f36b21;
}

/* FAQ List */
.ziny-faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Item */
.ziny-faq-item {
  border: 1px solid #f36b21;
  border-radius: 30px;
  background: #fff5ef;
  padding: 40px 30px 40px 40px;
  transition: all 0.3s ease;
}

/* Active State */
.ziny-faq-item.active {
  background: #fff;
}

/* Question */
.ziny-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.ziny-faq-question h4 {
  font-size: 22px;
  line-height: 28px;
  margin: 0;
  font-weight: 600;
}

/* Icon */
.ziny-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 1px solid #f36b21;
  border-radius: 50%;
  position: relative;
  background: #fff;
}

.ziny-faq-item.active span.ziny-icon {
  background: #fff5ef;
  border: none;
}

.ziny-icon::before,
.ziny-icon::after {
  content: "";
  position: absolute;
  background: #f36b21;
  transition: 0.3s;
}

/* Horizontal */
.ziny-icon::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Vertical */
.ziny-icon::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Active icon (minus) */
.ziny-faq-item.active .ziny-icon::after {
  opacity: 0;
}

/* Answer */
.ziny-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ziny-faq-item.active .ziny-faq-answer {
  max-height: 200px;
  margin-top: 15px;
}

.ziny-faq-answer p {
  margin: 0;
  font-size: 18px;
  color: #6a707c;
  line-height: 28px;
}

/*=====================
           Responisve CSS      
      ======================*/

@media (max-width: 1800px) {
  .footer__decor .star--left {
    left: 8%;
    top: -12px;
  }
}

@media (max-width: 1750px) {
  .ziny-intro-section:after {
    width: 130px;
    height: 260px;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 70px;
  }

  .ziny-intro-section:after {
    bottom: 50px;
  }

  .ziny-faq-decor {
    width: 130px;
    height: 260px;
  }
}

@media (max-width: 1700px) {
  .footer__decor .star--left {
    left: 4%;
  }

  .rewards__image {
    max-width: 710px;
  }

  .rewards__star {
    left: calc(50% + 0px);
  }
}


@media (max-width: 1628px) {
  .header__nav .nav__list {
    gap: 35px;
  }
}


@media (max-width: 1600px) {
  .header__container {
    padding: 14px 30px;
  }

  .ziny-intro-section:after {
    width: 80px;
    height: 140px;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 60px;
  }

  .rewards__star {
    left: 47%;
  }

  .rewards__star img {
    width: 190px;
  }

  .rewards__image {
    max-width: 660px;
  }

  .ziny-faq-decor {
    width: 80px;
    height: 140px;
  }
}


@media (max-width: 1548px) {
  .header__nav .nav__list {
    gap: 30px;
  }
}

@media (max-width: 1541px) {
  .footer__decor .star--left {
    left: 0;
  }

  .ziny-intro-section .ziny-intro__title,
  .ziny-intro-section .ziny-intro__kicker {
    font-size: 54px;
    line-height: 52px;
  }

  .ziny-intro-section .ziny-intro__container {
    max-width: 1362px;
  }

  .ziny-intro-section .ziny-intro__text {
    font-size: 18px;
    line-height: 26px;
  }

  .ziny-intro-section {
    padding: 180px 0px 130px;
  }

  .bh-features-heading {
    font-size: 54px;
    line-height: 52px;
  }

  .bh-features-wrap {
    max-width: 1300px;
  }

  .ziny-works .ziny-works__title,
  .ziny-parents .ziny-parents__title {
    font-size: 54px;
    line-height: 52px;
  }

  .ziny-works .ziny-works__container,
  .ziny-parents .ziny-parents__container {
    max-width: 1300px;
  }

  .rewards__container {
    max-width: 1300px;
  }

  .rewards__title {
    font-size: 54px;
    line-height: 52px;
  }

  .rewards__desc {
    font-size: 18px;
    line-height: 26px;
  }

  .lbp-title {
    font-size: 54px;
    line-height: 52px;
  }

  .lbp-name {
    font-size: 18px;
  }

  .ziny-slider__title {
    font-size: 54px;
    line-height: 52px;
    max-width: 992px;
    width: 100%;
  }

  .ziny-faq-title {
    font-size: 54px;
    line-height: 52px;
  }
}

@media (max-width: 1500px) {
  .rewards__star {
    left: 45%;
  }

  .rewards {
    padding: 60px 0 80px 0;
  }
}


@media (max-width: 1488px) {
  .header__nav .nav__list {
    gap: 25px;
  }
}

@media (max-width: 1450px) {
  .rewards__star {
    left: 42%;
  }

  .rewards__content {
    max-width: 48%;
  }
}

@media (max-width: 1440px) {
  .footer__text {
    font-size: 40.4px;
    line-height: 53px;
  }

  .footer__text span {
    font-size: 32px;
    line-height: 37px;
  }

  .footer__logo {
    width: 230px;
  }

  .footer__top {
    padding: 50px 20px 80px;
  }
}


@media (max-width: 1428px) {

  .header__actions,
  .header__logo {
    flex: unset;
  }

  .header__nav .nav__list {
    gap: 30px;
  }
}

@media (max-width: 1366px) {
  .header__container {
    padding: 14px 25px;
  }

  .footer__social a {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .footer__menu-list a {
    font-size: 18px;
    padding: 8px 21px;
  }

  .footer__top {
    padding: 70px 20px 60px;
  }

  .footer__text {
    font-size: 37.4px;
    line-height: 50px;
  }

  .footer__text span {
    font-size: 29px;
    line-height: 34px;
  }

  .footer::before {
    top: -100px;
  }

  .hero .hero__phones img {
    width: 650px;
  }

  .hero .hero__title {
    font-size: 65px;
    line-height: 92px;
  }

  .hero .hero__title span {
    font-size: 55px;
    line-height: 60px;
  }

  .hero .star4 {
    width: 55px;
  }

  .hero .star2 {
    width: 55px;
  }

  .hero .star3 {
    right: 25%;
    width: 30px;
  }

  .hero .star1 {
    top: -14px;
    width: 36px !important;
  }

  .hero .hero__left {
    /*     width: 330px; */
    width: 280px;
  }

  .ziny-intro-section .ziny-intro__title,
  .ziny-intro-section .ziny-intro__kicker {
    font-size: 45px;
    line-height: 43px;
  }

  .ziny-intro-section .ziny-intro__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .ziny-intro-section .ziny-intro__text {
    font-size: 16px;
    line-height: 24px;
  }

  .ziny-intro-section:after {
    width: 80px;
    height: 140px;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 70px;
  }

  .ziny-intro-section {
    padding: 150px 0px 120px;
  }

  .bh-features-heading {
    font-size: 45px;
    line-height: 43px;
  }

  .bh-features-wrap {
    max-width: 1200px;
  }

  .ziny-works .ziny-works__title,
  .ziny-parents .ziny-parents__title {
    font-size: 45px;
    line-height: 43px;
  }

  .ziny-works .ziny-works__container,
  .ziny-parents .ziny-parents__container {
    max-width: 1200px;
  }

  .ziny-works .ziny-works__item,
  .ziny-parents .ziny-parents__item {
    padding: 20px 18px;
  }

  .ziny-works .ziny-works__phone,
  .ziny-parents .ziny-parents__phone {
    margin-top: 50px;
  }

  .rewards__container {
    max-width: 1200px;
  }

  .rewards__image {
    max-width: 590px;
  }

  .rewards__title {
    font-size: 45px;
    line-height: 43px;
  }

  .rewards__desc {
    font-size: 16px;
    line-height: 24px;
  }

  .rewards__star {
    left: 45%;
  }

  .rewards__star img {
    width: 175px;
  }

  .lbp-title {
    font-size: 45px;
    line-height: 43px;
  }

  .lbp-name {
    font-size: 16px;
  }

  .ziny-slider__title {
    font-size: 45px;
    line-height: 43px;
    max-width: 790px;
  }

  .ziny-cta-section .ziny-title {
    font-size: 65px;
    line-height: 92px;
  }

  .ziny-cta-section .ziny-title span {
    font-size: 55px;
    line-height: 60px;
  }

  .ziny-cta-section .ziny-subtitle {
    font-size: 20px;
    line-height: 26px;
  }

  .ziny-cta-section .ziny-habits-card {
    padding: 110px 100px;
  }

  .ziny-cta-section .star1 {
    top: -14px;
    width: 36px !important;
  }

  .ziny-faq-title {
    font-size: 45px;
    line-height: 43px;
  }

  .ziny-faq-item {
    padding: 30px 20px 30px 30px;
  }

  .ziny-faq-decor {
    width: 80px;
    height: 140px;
    top: 21px;
  }
  .lbp-card {
    aspect-ratio: 370 / 268;
  }
}

@media (max-width: 1350px) {
  .ziny-intro-section:after {
    width: 68px;
    display: block;
    height: 140px;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 30px;
    right: 0;
    background: url("../images/faq-side.webp");
    background-repeat: no-repeat;
    background-size: contain;
  }

  .ziny-faq-decor {
    display: none;
  }
}

@media (max-width: 1300px) {

  .ziny-works .ziny-works__container,
  .ziny-parents .ziny-parents__container {
    max-width: 1150px;
  }

  .ziny-works .ziny-works__content,
  .ziny-parents .ziny-parents__content {
    flex: 0 1 500px;
    max-width: min(100%, 500px);
  }

  .rewards__star img {
    width: 170px;
  }

  .rewards__content {
    max-width: 41%;
  }

  .rewards__container {
    max-width: 1100px;
  }

  .rewards__star {
    left: 40%;
  }
}

@media (max-width: 1250px) {

  .footer__decor .star--left,
  .footer__decor .star--right {
    width: 35px !important;
    height: 35px !important;
  }

  .hero .hero__inner {
    min-height: 800px;
  }

  .hero .hero__phones img {
    /*     width: 890px; */
    width: 600px;
  }

  .hero .hero__left {
    width: 306px;
    bottom: 102px;
  }
}

@media (max-width: 1200px) {
  .ziny-works .ziny-works__container {
    max-width: 100%;
    padding: 0 40px 0 20px;
  }

  .ziny-parents .ziny-parents__container {
    max-width: 100%;
    padding: 0 20px 0 40px;
  }

  .ziny-works .ziny-works__item,
  .ziny-parents .ziny-parents__item {
    padding: 16px 18px;
  }

  .ziny-works .ziny-works__content,
  .ziny-parents .ziny-parents__content {
    flex: 0 1 450px;
    max-width: min(100%, 450px);
  }

  .rewards__star {
    left: 37%;
  }

  .rewards__title {
    font-size: 40px;
    line-height: 38px;
  }

  .rewards__tag {
    font-size: 18px;
    line-height: 22px;
  }
  .lbp-card {
    aspect-ratio: 320 / 268;
  }
}

@media (max-width: 1199px) {
  .header__nav .nav__list {
    gap: 25px;
  }

  .header__actions img {
    width: 50px;
  }

  .header__actions .btn {
    height: 35px;
  }

  .footer__menu-list a {
    font-size: 16px;
    padding: 8px 18px;
  }

  .footer__text {
    font-size: 33.4px;
    line-height: 46px;
  }

  .footer__text span {
    font-size: 25px;
    line-height: 31px;
  }

  .hero .hero__title {
    font-size: 60px;
    line-height: 85px;
  }

  .hero .hero__title span {
    font-size: 50px;
    line-height: 55px;
  }

  .hero .hero__left {
    width: 290px;
  }

  .hero .hero__inner {
    min-height: 770px;
  }

  .hero__phones img {
    width: 850px;
  }

  .hero__left {
    width: 250px;
    bottom: 120px;
  }

  .ziny-intro-section .ziny-intro__title,
  .ziny-intro-section .ziny-intro__kicker {
    font-size: 40px;
    line-height: 38px;
  }

  .bh-features-heading {
    font-size: 40px;
    line-height: 38px;
  }

  .ziny-works .ziny-works__title,
  .ziny-parents .ziny-parents__title {
    font-size: 40px;
    line-height: 38px;
  }

  .lbp-title {
    font-size: 45px;
    line-height: 43px;
  }

  .ziny-slider__title {
    font-size: 40px;
    line-height: 38px;
    max-width: 740px;
  }

  .ziny-cta-section .ziny-title {
    font-size: 60px;
    line-height: 85px;
  }

  .ziny-cta-section .ziny-title span {
    font-size: 50px;
    line-height: 55px;
  }

  .ziny-cta-section .ziny-app-btn {
    font-size: 18px;
    height: 60px;
  }

  .ziny-cta-section .ziny-app-btn img {
    width: 100px;
  }

  .ziny-cta-section .ziny-subtitle {
    margin-bottom: 50px;
  }

  .ziny-cta-section .ziny-habits-card {
    padding: 100px 100px;
  }

  .ziny-cta-section .ziny-character img {
    width: 200px;
  }

  .ziny-faq-title {
    font-size: 40px;
    line-height: 38px;
  }

  .ziny-faq-item {
    padding: 25px 15px 25px 25px;
  }
}

@media (max-width: 1150px) {
  .rewards__image {
    max-width: 580px;
  }

  .rewards__star {
    left: 37%;
    top: -100px;
  }
}

@media (max-width: 1100px) {
  .ziny-intro-section .ziny-intro__container {
    max-width: 992px;
    /* margin: 0 20px; */
  }

  .ziny-intro-section {
    padding: 100px 0px;
  }

  .bh-features-wrap {
    max-width: 992px;
  }

  .hero .hero__phones img {
    /*     width: 790px; */
    width: 520px;
  }

  .hero .hero__title {
    font-size: 50px;
    line-height: 80px;
  }

  .hero .hero__title span {
    font-size: 45px;
    line-height: 50px;
  }

  .hero .hero__center {
    width: 900px;
  }

  .hero {
    padding: 95px 0 0;
  }

  .hero .hero__left {
    /*     width: 225px; */
    width: 200px;
    bottom: 110px;
  }

  .ziny-works,
  .ziny-parents {
    padding: 90px clamp(16px, 4vw, 24px) 110px;
  }

  .rewards__container {
    max-width: 992px;
    margin: 0 20px;
  }

  .rewards__image {
    max-width: 520px;
  }

  .ziny-cta-section .ziny-title {
    font-size: 50px;
    line-height: 80px;
  }

  .ziny-cta-section .ziny-title span {
    font-size: 45px;
    line-height: 50px;
  }

  .ziny-cta-section .ziny-habits-card {
    padding: 93px 85px;
  }
}

@media (max-width: 1025px) {
  .rewards__content {
    max-width: 38%;
  }

  .rewards__star img {
    width: 150px;
  }

  .hero .hero__phones img {

    width: 500px;
  }




}

@media (max-width: 1024px) {
  .footer__text {
    font-size: 29.4px;
    line-height: 43px;
  }

  .footer__text span {
    font-size: 23px;
    line-height: 28px;
  }

  .footer__decor .star--left,
  .footer__decor .star--right {
    width: 30px !important;
    height: 30px !important;
  }

  .ziny-works .ziny-works__content,
  .ziny-parents .ziny-parents__content {
    flex: 0 1 400px;
    max-width: min(100%, 400px);
  }

  .ziny-works .ziny-works__title,
  .ziny-parents .ziny-parents__title {
    margin: 15px 0 30px;
  }

  .ziny-works .ziny-works__item,
  .ziny-parents .ziny-parents__item {
    padding: 12px 18px;
  }

  .ziny-works,
  .ziny-parents {
    padding: 90px clamp(16px, 4vw, 24px) 60px;
  }

  .lbp-section {
    --lbp-bubble-content-left: 22px;
    padding: 040px 18px 130px;
  }

  .lbp-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .lbp-head {
    display: contents;
  }

  .lbp-title {
    order: 1;
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }

  .lbp-window {
    order: 2;
    margin: 0 -4px;
    padding: 4px 4px 20px;
  }

  .lbp-slider-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-left: 0;
    margin-top: 4px;
    padding-top: 20px;
  }

  .lbp-card-inner {
    padding: 16px 6% 69px var(--lbp-bubble-content-left);
  }

  .lbp-stars {
    position: relative;
    z-index: 1;
    margin: 0 0 3px 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 0;
  }

  .lbp-star-icon {
    width: 14px;
    height: 20px;
    display: block;
    flex-shrink: 0;
    object-fit: contain;
  }

  .lbp-author {
    gap: 12px;
    align-items: center;
    margin-top: -22px;
    padding-right: 6px;
  }

  .lbp-name {
    line-height: 1.4;
  }

  .lbp-quote-icon {
    top: -18px;
    right: clamp(12px, 8vw, 29px);
    width: clamp(54px, 9vw, 68px);
  }

  .lbp-card-title {
    font-size: 16px;
  }

  .lbp-card-text {
    font-size: 13px;
  }

  .lbp-avatar-wrap {
    width: 50px;
    height: 50px;
  }

  .lbp-card {
     aspect-ratio: 4 /3.5;
  }
}

@media (min-width: 992px) {
  .ziny-works .ziny-works__visual {
    justify-content: flex-end;
  }

  .ziny-parents .ziny-parents__visual {
    justify-content: flex-start;
  }

  .ziny-works .ziny-works__phone,
  .ziny-parents .ziny-parents__phone {
    max-width: min(100%, 780px);
  }

  .zinySwiper.swiper-slide {
    opacity: 1 !important;
    transform: none !important;
  }

  .zinySwiper.swiper-3d .swiper-wrapper {
    transform-style: none;
  }
}

@media (max-width: 991px) {
  .header__container {
    padding: 14px 20px;
  }

  .header__logo img {
    width: 91px;
    vertical-align: middle;
  }

  .header__nav,
  .header__actions {
    display: none;
  }

  .header__toggle {
    display: flex;
    padding: 0;
    align-items: end;
  }

  .footer__top {
    padding: 70px 20px 60px;
  }

  .footer__text {
    font-size: 22px;
    line-height: 40px;
    margin: 0 30px 30px;
  }

  .footer__text span {
    font-size: 18px;
    line-height: 21px;
  }

  .footer__menu-list {
    gap: 25px 10px;
    margin: 0px 25px;
  }

  .footer__menu-list a {
    font-size: 14px;
  }

  .footer__bottom {
    flex-direction: column-reverse;
    gap: 10px;
    text-align: center;
    padding: 25px 0;
  }

  .footer__social a {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .footer__social a:hover {
    background: transparent;
    border-radius: 0px;
  }

  .footer__top-img:before {
    top: 11px;
    left: calc(50% + 44px);
  }

  .bh-features-heading {
    font-size: 35px;
    line-height: 33px;
  }

  .hero {
    padding: 40px 0px 0;
    border-radius: 20px;
  }

  /* RESET desktop positioning */
  .hero .hero__center,
  .hero .hero__left,
  .hero .hero__right {
    position: relative !important;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    width: 100%;
  }

  /* STACK ORDER */
  .hero .hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* TITLE */
  .hero .hero__title {
    font-size: 50px;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 0;
  }

  /* HABITS TAG */
  .hero .hero__title span {
    display: inline-block;
    padding: 10px 29px 0px;
    border-radius: 35px;
    margin: 8px 0;
    font-size: 45px;
  }

  /* DESCRIPTION */
  .hero .hero__left {
    order: 2;
    text-align: center;
    margin-top: 10px;
    max-width: 430px;
    font-size: 16px;
    line-height: 18px;
  }

  .hero .hero__left p {
    margin-bottom: 0;
    padding: 0 15px;
  }

  /* RATING (CENTERED ABOVE PHONES) */
  .hero .hero__right {
    order: 3;
    margin: 0;
    text-align: center;
  }

  .hero .hero__right img {
    width: 110px;
  }

  /* PHONES */
  .hero .hero__phones {
    order: 4;
    margin-top: 10px;
  }

  .hero .hero__phones img {
    min-width: 300px;
    width: 612px;
    padding-right: 15px;
  }

  /* STARS HIDE */
  .hero .star1 {
    top: -16px;
    width: 32px !important;
  }

  .hero .star4 {
    width: 45px;
    top: 225px;
  }

  .hero .star2 {
    width: 45px;
  }

  .hero .star3 {
    right: 17%;
    width: 25px;
  }

  .hero .hero__phones.mobile-center-img {
    display: block;
  }

  .hero .hero__phones.desktop-center-img {
    display: none;
  }

  .ziny-intro-section .ziny-intro__title,
  .ziny-intro-section .ziny-intro__kicker {
    font-size: 35px;
    line-height: 33px;
  }

  .ziny-intro-section:after {
    bottom: 10px;
  }

  .bh-features-section {
    padding-bottom: 70px;
    padding-top: 60px;
  }

  .bh-features-slider-window {
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    padding-block: 18px;
    padding-inline: 14px;
    margin: 0;
  }

  .bh-features-swiper.swiper {
    overflow: hidden;
    padding-block: 18px;
  }

  .bh-feature-card {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 284px;
    margin-inline: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
  }

  .bh-feature-card::before {
    inset: 0;
  }

  .bh-feature-card h3 {
    margin: 0;
  }

  .bh-feature-card p {
    margin-top: 0;
  }

  .bh-feature-card .bh-icon-box {
    margin-bottom: 0;
  }

  .bh-slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
  }

  .bh-slider-nav {
    display: none;
  }

  .bh-slider-btn {
    width: 76px;
    height: 38px;
    border: none;
    background: transparent;
    color: #b6bcc5;
    cursor: pointer;
    padding: 0;
    display: grid;
    place-items: center;
  }

  .bh-slider-btn img {
    width: 76px;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .bh-slider-btn.swiper-button-disabled {
    opacity: 0.45;
    cursor: default;
  }

  .bh-slider-btn:focus-visible {
    outline: 2px solid #ff7f30;
    outline-offset: 3px;
  }

  .ziny-works,
  .ziny-parents {
    padding: 48px clamp(16px, 4vw, 20px) 56px;
  }

  .ziny-works {
    padding: 48px clamp(16px, 4vw, 20px) 70px;
  }

  .ziny-works .ziny-works__container,
  .ziny-parents .ziny-parents__container {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 0px;
  }

  .ziny-works .ziny-works__content {
    order: 2;
  }

  .ziny-works .ziny-works__content,
  .ziny-parents .ziny-parents__content {
    justify-content: start;
  }

  .ziny-works .ziny-works__visual {
    order: 1;
    padding: 0 20px 0 0;
  }

  .ziny-parents .ziny-parents__visual {
    padding: 0 0 0 20px;
  }

  .ziny-works .ziny-works__content,
  .ziny-works .ziny-works__visual,
  .ziny-parents .ziny-parents__content,
  .ziny-parents .ziny-parents__visual {
    max-width: none;
    width: 100%;
  }

  .ziny-works .ziny-works__title,
  .ziny-parents .ziny-parents__title {
    margin-bottom: 35px;
    font-size: 35px;
    line-height: 33px;
    max-width: 345px;
  }

  .ziny-works .ziny-works__list,
  .ziny-parents .ziny-parents__list {
    gap: 12px;
  }

  .ziny-works .ziny-works__item,
  .ziny-parents .ziny-parents__item {
    padding: 14px 16px;
    gap: 12px;
  }

  .ziny-works .ziny-works__text,
  .ziny-parents .ziny-parents__text {
    font-size: 14px;
    line-height: 1.4;
  }

  .ziny-works .ziny-works__visual,
  .ziny-parents .ziny-parents__visual {
    min-width: 0;
    justify-content: center;
  }

  .ziny-works .ziny-works__phone,
  .ziny-parents .ziny-parents__phone {
    margin-left: auto;
    margin-right: auto;
    max-width: min(100%, 460px);
  }

  .rewards::before {
    top: -49px;
  }

  .rewards::after {
    bottom: -4px;
  }

  .rewards {
    padding: 30px 0 80px 0;
    margin: 100px 0 20px 0;
  }

  /* STAR */
  .rewards__star {
    position: relative;
    top: 0;
    left: 0px;
    z-index: 3;
    margin-left: 15px;
  }

  /* CONTAINER */
  .rewards__container {
    /* padding: 0 20px; */
    max-width: 768px;
    text-align: center;
  }

  /* STACK */
  .rewards__content {
    max-width: 60%;
    text-align: left;
  }

  /* IMAGE RESET */
  .rewards__image {
    position: absolute;
    top: -45px;
    right: 0;
    transform: none;
    width: 100%;
    max-width: 350px;
    margin: 0px auto 0;
  }

  /* ICON CENTER */
  .rewards__icons {
    justify-content: left;
    flex-wrap: wrap;
  }

  .reward-item img {
    width: 100px;
  }

  .reward-item span {
    font-size: 16px;
  }

  .rewards__star img {
    width: 105px;
  }

  .rewards__title {
    font-size: 35px;
    line-height: 33px;
  }

  .rewards__image img.desk-hand-img {
    display: none;
  }

  .rewards__image img.res-hand-img {
    display: block;
  }

  .lbp-title {
    font-size: 35px;
    line-height: 33px;
  }

  .ziny-slider__title {
    font-size: 35px;
    line-height: 33px;
    max-width: 640px;
  }

  .ziny-slider::after {
    bottom: -38px;
  }

  .ziny-cta-section .ziny-container {
    max-width: 100%;
  }

  .ziny-cta-section .ziny-habits-card {
    padding: 120px 30px;
    max-width: 650px;
    background-image: url("../images/cta-res-bg.webp");
    background-size: 100% 100%;
    margin: 0 auto;
    height: 550px;
  }

  .ziny-cta-section .ziny-character {
    top: -69px;
    left: 30px;
  }

  .ziny-cta-section .ziny-character img {
    width: 191px;
    transform: rotate(-3deg);
  }

  .ziny-cta-section .ziny-habits-card .ziny-content {
    padding-right: 50px;
  }

  .ziny-cta-section .ziny-title {
    font-size: 35px;
    line-height: 60px;
  }

  .ziny-cta-section .ziny-title span {
    font-size: 30px;
    line-height: 40px;
    display: inline-block;
    padding: 5px 29px 2px;
    border-radius: 35px;
    margin: 8px 0;
  }

  .ziny-cta-section .star1 {
    top: -12px;
    width: 29px !important;
  }

  .ziny-cta-section .ziny-subtitle {
    font-size: 18px;
    line-height: 24px;
  }

  .ziny-cta-section .star1 {
    top: -16px;
    width: 32px !important;
  }

  .ziny-faq-title {
    font-size: 35px;
    line-height: 33px;
  }
}

@media (min-width: 641px) and (max-width: 991px) {
  .bh-feature-card {
    min-height: 260px;
    height: auto;
    padding: 26px 28px;
    gap: 12px;
  }

  .bh-feature-card h3 {
    font-size: 20px;
    line-height: 1.3;
  }

  .bh-feature-card p {
    font-size: 14px;
    line-height: 1.55;
  }

  .bh-icon-box {
    width: 66px;
    height: 66px;
    place-items: center;
    justify-items: center;
  }

  .bh-icon-box img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 882px) {
  .footer__top-img:before {
    top: 8px;
    left: calc(50% + 38px);
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 768px) {
  .footer::before {
    height: 120px;
    top: -80px;
  }

  .footer__copy {
    font-size: 12px;
  }

  .footer__content {
    max-width: 100%;
    margin: 0 auto;
  }

  .footer__line {
    display: none;
  }

  .footer__top {
    padding: 40px 0px 60px;
  }

  .footer__menu {
    position: relative;
    margin-top: 100px;
  }

  .footer__menu:after {
    content: "";
    display: block;
    border: 1px dashed var(--color-yellow);
    position: absolute;
    top: -54px;
    width: 100%;
    height: 1px;
  }

  .footer__logo {
    width: 161px;
  }

  .footer__decor .star--left {
    left: 22px;
    top: -42px;
    width: 25px !important;
    height: 25px !important;
  }

  .footer__text {
    line-height: 54px;
  }

  .footer__decor .star--right {
    width: 25px !important;
    height: 25px !important;
  }

  /* .hero{
            background:transparent;
        }
         */

  .hero .hero__title {
    font-size: 42px;
    line-height: 1.2;
  }

  .hero .hero__title span {
    font-size: 37px;
    padding: 2px 29px 0px;
  }

  .hero .star1 {
    top: -10px;
    width: 25px !important;
  }

  .hero .star2 {
    display: none;
  }

  .hero .star4 {
    width: 30px;
    top: 57px;
    left: 1%;
  }

  .hero .star3 {
    right: 3%;
    width: 22px;
    /*     bottom: 391px; */
    bottom: 430px;
  }

  .ziny-intro-section {
    padding: 50px 0px 60px;
  }

  .ziny-intro-section .ziny-intro__container {
    flex-direction: column;
    gap: 18px;
    align-items: center;
    max-width: 100%;
  }

  .ziny-intro-section .ziny-intro__media {
    width: 100%;
    order: 1;
  }

  .ziny-intro-section .ziny-intro__content {
    width: 100%;
    order: 2;
  }

  .ziny-intro-section .ziny-intro__media img {
    max-width: 100%;
    margin: 0 auto;
  }

  .ziny-intro-section .ziny-intro__kicker {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 0px;
  }

  .ziny-intro-section .ziny-intro__title {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 14px;
  }

  .ziny-intro-section .ziny-intro__lead {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 18px;
    max-width: 100%;
  }

  .ziny-intro-section .ziny-intro__subhead {
    font-size: 20px;
    margin-bottom: 12px;
    gap: 8px;
  }

  .ziny-intro-section .ziny-intro__subhead-icon {
    width: 22px;
    height: 22px;
  }

  .ziny-intro-section .ziny-intro__text {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 14px;
  }

  .ziny-intro-section .ziny-intro__btn {
    margin-top: 8px;
    border-radius: 10px;
    /* box-shadow: 0 3px 0 rgba(197, 90, 26, 0.55), 0 4px 12px rgba(255, 118, 36, 0.35); */
  }

  .ziny-intro-section .ziny-intro__btn-img {
    width: min(228px, 100%);
  }

  .bh-features-section {
    --bh-cloud-h: calc(100vw * 78 / 440);
  }

  .bh-features-heading {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 14px;
  }

  .bh-cloud-divider,
  .bh-cloud-divider-bottom {
    display: none;
  }

  .bh-mobile-divider {
    display: block;
  }

  .bh-features-heading {
    font-size: 28px;
    line-height: 32px;
  }

  .ziny-works .ziny-works__title,
  .ziny-parents .ziny-parents__title {
    font-size: 28px;
    line-height: 32px;
    max-width: 345px;
  }

  .ziny-works .ziny-works__container,
  .ziny-parents .ziny-parents__container {
    padding: 0px;
  }

  .ziny-works,
  .ziny-parents {
    padding: 48px clamp(16px, 4vw, 20px) 120px;
  }

  .ziny-works {
    padding: 48px clamp(16px, 4vw, 20px) 60px;
  }

  .rewards__container {
    max-width: 100%;
  }

  .reward-item img {
    width: 80px;
  }

  .reward-item span {
    font-size: 14px;
  }

  .rewards::before {
    background-image: url("../images/rs-clound-top.webp");
    background-size: contain;
  }

  .rewards::after {
    background-image: url("../images/subtract-res.webp");
    background-size: contain;
  }

  .rewards__image {
    max-width: 280px;
    top: -177px;
  }

  .rewards__title {
    font-size: 32px;
    line-height: 30px;
  }

  .rewards__desc {
    font-size: 14px;
    line-height: 20px;
  }

  .rewards__content {
    max-width: 100%;
  }

  .lbp-title {
    font-size: 28px;
    line-height: 32px;
  }

  .lbp-card {
    /* aspect-ratio: 1 / 1; */
    aspect-ratio:auto;
  }

  .ziny-slider {
    padding: 40px 0;
  }

  .ziny-slider::before {
    background-image: url("../images/ms-clound-top.webp");
    background-size: contain;
    /* height: 70px; */
    top: -60px;
  }

  .ziny-slider::after {
    background-image: url("../images/ms-cloundb.webp");
    background-size: contain;
    /* height: 70px; */
    bottom: -64px;
  }

  .ziny-slider__title {
    font-size: 28px;
    line-height: 32px;
    max-width: 393px;
  }

  .ziny-cta-section {
    padding: 150px 15px;
  }

  .ziny-cta-section .ziny-habits-card {
    padding: 95px 30px;
  }

  .ziny-cta-section .ziny-title {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 20px;
  }

  .ziny-cta-section .ziny-title span {
    font-size: 25px;
    line-height: 35px;
  }

  .ziny-cta-section .ziny-app-buttons {
    flex-direction: column;
    align-items: center;
  }

  .ziny-cta-section .ziny-app-btn {
    /* width: 220px; */
    justify-content: center;
  }

  .ziny-cta-section .ziny-character {
    top: -25px;
    left: 20px;
  }

  .ziny-cta-section .ziny-character img {
    width: 120px;
  }

  .ziny-cta-section .star1 {
    top: -10px;
    width: 25px !important;
  }

  .ziny-cta-section .ziny-app-btn {
    font-size: 16px;
    height: 50px;
  }

  .ziny-cta-section .ziny-app-btn.parent {
    margin-bottom: 30px;
  }

  .ziny-cta-section .ziny-subtitle {
    font-size: 16px;
    line-height: 22px;
    max-width: 320px;
    margin: 0 auto;
  }

  .ziny-faqs {
    padding: 30px 20px 60px;
  }

  .ziny-faq-title {
    font-size: 28px;
    line-height: 32px;
  }

  .ziny-faq-question h4 {
    font-size: 15px;
    line-height: 16px;
    padding-right: 10px;
  }

  .ziny-faq-answer p {
    font-size: 13px;
    line-height: 17px;
  }

  .ziny-faq-item {
    padding: 15px 15px 15px 20px;
    border-radius: 14px;
  }

  /* .ziny-faqs::before {
  height: 50px;
} */

  .ziny-faq-decor {
    width: 100px;
    top: 80px;
    opacity: 0.6;
  }

  .ziny-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
  }
}

@media (max-width: 767px) {
  .rewards {
    padding: 60px 0 80px 0;
  }

  .rewards::after {
    bottom: -8px;
  }
}

@media (max-width: 750px) {
  .footer__top-img:before {
    top: 2px;
    left: calc(50% + 19px);
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 640px) {
  .bh-features-section {
    padding: 56px 00px 70px 20px;
  }

  .bh-features-slider-window {
    overflow: hidden;
    padding-block: 0px;
    padding-inline: 0px;
    margin-inline: auto;
    max-width: 100%;
    box-sizing: border-box;
  }

  .bh-features-swiper.swiper {
    overflow: hidden;
    padding-block: 22px;
    padding-inline: 8px;
    margin-inline: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .bh-features-swiper .swiper-wrapper {
    align-items: stretch;
  }

  .bh-features-swiper .swiper-slide {
    height: auto;
    box-sizing: border-box;
  }

  .bh-feature-card {
    width: 100%;
    max-width: none;
    height: 238px;
    min-height: 238px;
    padding: 20px 22px;
    gap: 8px;
    margin-inline: 0;
    box-sizing: border-box;
  }

  .bh-feature-card h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.3;
  }

  .bh-feature-card p {
    font-size: 12px;
    line-height: 1.5;
  }

  .bh-icon-box {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    justify-items: center;
  }

  .bh-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  .bh-slider-nav {
    margin-top: 20px;
  }

  .bh-features-heading {
    margin-bottom: 26px;
  }
}

@media (max-width: 575px) {
  .footer__decor .star--left {
    left: 33px;
    top: -104px;
    width: 21px !important;
    height: 21px !important;
  }

  .footer__decor .star--right {
    right: 10%;
    top: -175px;
    width: 21px !important;
    height: 21px !important;
  }

  .footer__text span:first-child {
    transform: rotate(3deg);
  }

  .footer__text span:last-child {
    transform: rotate(-3deg);
  }

  .hero::before {
    background: url("../images/banner-mobile-bg.webp") no-repeat center;
    background-size: cover;
  }

  .ziny-cta-section .ziny-habits-card .ziny-content {
    padding-right: 10px;
  }

  .ziny-cta-section .ziny-habits-card {
    padding: 120px 12px;
  }

  .ziny-cta-section .ziny-title {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 20px;
  }

  .ziny-cta-section .ziny-title span {
    font-size: 25px;
    line-height: 30px;
    padding: 6px 15px 2px;
  }

  .ziny-cta-section .ziny-app-btn img {
    width: 70px;
  }

  .ziny-cta-section .ziny-app-btn {
    font-size: 13px;
    height: 44px;
  }

  .ziny-cta-section .ziny-app-btn.parent {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .ziny-popup-animate {
    transform: scale(0.7);
  }

  .ziny-app-popup-parent-border,
  .ziny-app-popup-child-border {
    border: none !important;
  }

  .ziny-app-popup-parent,
  .ziny-app-popup-child {
    width: 100%;
    min-height: 372px;
    padding: 20px;
    border-radius: 24px;
  }

  .ziny-app-content .ziny-app-icon {
    width: 110px;
  }

  .ziny-app-btns img {
    width: 150px;
  }

  .ziny-app-content h3 {
    font-size: 22px;
    line-height: 35px;
  }

  .ziny-app-content p {
    font-size: 14px;
    line-height: 22px;
  }

  .hero {
    background: transparent;
  }

}

@media (max-width: 450px) {
  .hero .hero__title {
    max-width: 340px;
    margin: 0 auto;
  }

  .lbp-section {
    padding: 040px 17px 130px;
  }

}

@media (prefers-reduced-motion: reduce) {

  .bh-feature-card,
  .bh-feature-card::before {
    transition: none;
  }
}

/*------------------------------------------ Default Page ---------------------------------------*/

.default-content .container {
	max-width: 1400px;
	width: 90%;
	margin: 0 auto;
	font-family: 'Baloo 2', Arial, Helvetica, sans-serif;
}

.default-content {
	min-height: 80vh;
	padding-bottom: 100px;
}

.default-content .entry-header .entry-title {
    text-align: center;
    line-height: 1.4;
    color: #1a1a1a;
	color: #ff7a1a;
    font-size: 46px;
}

.default-content p:not(:last-child) {
	margin: 0;
	margin-bottom: 20px;
	color: #000;
	font-size: 20px;
	line-height: 28px;
}

.default-content p a {
	color: #479ad5;
}

.default-content p a:hover {
	color: #1a1a1a;
}

.default-content ul {
	list-style: disc;
}

.default-content ul,
.default-content ol {
	padding-left: 30px;
	margin-top: 20px;
	margin-bottom: 20px;
}

.default-content ul li,
.default-content ol li {
	padding-bottom: 10px;
}

.default-content ul li:last-child,
.default-content ol li:last-child {
	padding-bottom: 0;
}

.default-content ul li,
.default-content ul li a,
.default-content ol li,
.default-content ol li a {
	color: #000;
	font-size: 20px;
	line-height: 28px;
	font-weight: 400;
}

.default-content ul li:hover a,
.default-content ol li:hover a {
	color: #479ad5;
}

.default-content h2 {
	font-size: 40px;
	color: #1a1a1a;
	margin: 10px 0;
}

.default-content h3 {
	font-size: 32px;
	color: #1a1a1a;
	margin: 10px 0;
}

.default-content h4 {
	font-size: 28px;
	color: #1a1a1a;
	margin: 10px 0;
}

.default-content h5 {
	font-size: 24px;
	color: #1a1a1a;
	margin: 10px 0;
}

.default-content h6 {
	font-size: 20px;
	color: #1a1a1a;
	margin: 10px 0;
}
.default-content blockquote {
    padding: 30px;
    background: #fff8da;
    border-radius: 4px;
    font-size: 18px;
    color: #000;
    margin: 0;
}
.default-content blockquote p {
	margin:0;
}
@media (max-width: 767px) {
	.default-content .entry-header .entry-title {
		line-height: 1.2;
		font-size: 38px;
	}
	.default-content p:not(:last-child) {
		font-size: 16px;
		line-height: 26px;
	}
	.default-content h4 {
		font-size: 22px;
	}
	.default-content blockquote {
		padding: 14px;
		border-radius: 8px;
		font-size: 16px;
	}
	.default-content ul li, .default-content ul li a, .default-content ol li, .default-content ol li a {
		color: #000;
		font-size: 16px;
		line-height: 26px;
		font-weight: 400;
	}
	.default-content h5 {
    	font-size: 20px;
    }
}