* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html[data-i18n-loading="1"] body {
  visibility: hidden;
}

body {
  line-height: 1.6;
  font-family: "Montserrat", sans-serif;
  padding: 140px 90px 70px;
}

.app-install-banner {
  position: fixed;
  top: 10px;
  left: 50%;
  z-index: 1200;
  transform: translateX(-50%);
  width: min(760px, calc(100vw - 20px));
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(10px);
}

.app-install-banner__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
}

.app-install-banner__icon img {
  border-radius: 10px;
}

.app-install-banner__text {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  gap: 2px;
}

.app-install-banner__title {
  color: #0f172a;
  font-size: 15px;
  font-weight: 700;
}

.app-install-banner__sub {
  color: #475569;
  font-size: 13px;
  line-height: 1.3;
}

.app-install-banner__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-install-banner__btn {
  border: none;
  border-radius: 10px;
  padding: 10px 14px;
  background: #0f172a;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.app-install-banner__btn:hover {
  background: #1e293b;
}

.app-install-banner__close {
  border: none;
  border-radius: 10px;
  width: 32px;
  height: 32px;
  background: #f1f5f9;
  color: #334155;
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
}

.app-install-banner__close:hover {
  background: #e2e8f0;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
}

.header {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 32px 90px 18px;
  background: linear-gradient(180deg, #ffffff, #ffffffc2, #ffffff6e, #ffffff6e);
  backdrop-filter: blur(10px);
}

.logo {
  flex-shrink: 0;
}

.logo img {
  width: 205px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}

.header-right .nav-links {
  order: 1;
}

.header-right .lang-dropdown {
  order: 2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: rgba(2, 3, 5, 1);
}

.nav-links a {
  position: relative;
}

.nav-links a:hover {
  color: rgb(68, 118, 255);
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: rgb(47, 79, 165);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-signup {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 160px;
  height: 56px;
  border: none;
  border-radius: 20px;
  background: rgba(13, 15, 18, 1);
  color: #fff;
  font-size: 17px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-signup:hover {
  color: rgb(203, 218, 238);
}

.btn-signup::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-signup:hover::before {
  width: 300px;
  height: 300px;
}

.lang-dropdown {
  position: relative;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 78px;
  height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: #fff;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.lang-toggle:hover {
  box-shadow: 0 10px 15px #144fd767;
}

.lang-arrow {
  font-size: 12px;
  transition: transform 0.25s ease;
}

.lang-dropdown.open .lang-arrow {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: none;
  flex-direction: column;
  gap: 6px;
  min-width: 60px;
  padding: 8px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.lang-dropdown.open .lang-menu {
  display: flex;
}

.lang-option {
  border: none;
  border-radius: 12px;
  padding: 10px;
  background: #f5f7fb;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease;
}

.lang-option:hover {
  background: #89a0ec;
}

.mobile-about-link {
  display: none;
}

.hero {
  padding-top: 20px;
}

.hero-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 370px;
  padding: 64px;
  border-radius: 28px;
  background: url("/assets/Rectangle\ 3.png") no-repeat center/cover;
  overflow: visible;
}

.hero-text h1 {
  color: #fff;
  font-size: 50px;
  line-height: 1.1;
  opacity: 0;
  text-shadow: 0 0 5px #000000, 0 0 10px #00d0ff, 0 0 20px #005de8;
  animation: slide-up 0.8s ease forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 52px;
}

.watch-video a {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s;
}

.watch-video img {
  width: 30px;
  height: 30px;
}

.primary,
.watch-video {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
}

.primary {
  width: 200px;
  background: rgba(13, 15, 18, 1);
  color: #fff;
  font-size: 20px;
  text-align: center;
  box-shadow: 0 5px 15px 5px rgba(0, 0, 0, 0.555);
}

.primary:hover {
  background: rgb(47, 79, 165);
  animation: pulse-glow 3.5s ease-in-out infinite;
}

.watch-video {
  gap: 8px;
  width: 250px;
  background: transparent;
  color: #000;
  font-size: 18px;
  box-shadow: 0 5px 15px 10px rgba(87, 106, 170, 0.555);
}

.watch-video:hover {
  background: #000;
  animation: pulse-glow 3.5s ease-in-out infinite;
}

.watch-video:hover a {
  color: #fff;
}

.at {
  width: 400px;
  margin-top: 50px;
  color: #000;
  font-size: 17px;
}

.hero-girl {
  position: absolute;
  bottom: -250px;
  height: 600px;
  margin-left: 200px;
  transform: translateX(-50%);
  animation: float 7s ease-in-out infinite;
}

.Spacewalks {
  width: 300px;
}

.Exercises {
  width: 270px;
}

.Totaldays {
  width: 440px;
}

.middle {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.stat-1,
.stat-2,
.stat-3 {
  position: absolute;
  animation: pulse-glow 3s ease-in-out infinite;
}

.stat-1 {
  z-index: 1;
  top: 300px;
  right: -140px;
}

.stat-2 {
  left: 250px;
  top: 200px;
}

.stat-3 {
  left: 50%;
  right: auto;
  top: 644px;
  z-index: 8;
  transform: translateX(-50%);
}

.partners {
  margin-top: 250px;
  padding-top: 40px;
  border-top: 1px solid rgb(47, 79, 165);
}

.partners-title {
  margin-bottom: 70px;
  text-align: center;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}

.stat {
  width: 300px;
  text-align: center;
}

.stat-number {
  display: block;
  margin-bottom: 0.75rem;
  font-family: "Syne", "Arial Black", sans-serif;
  font-size: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  color: #051643cf;
}

.stat-label {
  font-size: 18px;
  color: #000;
}

.community {
  margin-top: 2rem;
  padding: 96px 0;
}

.third-section-container {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.third-section-left {
  flex: 1 1 300px;
  display: flex;
  align-items: start;
}

.third-section-left h1 {
  width: 500px;
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
}

.third-section-right {
  flex: 2 1 500px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.third-section-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  border-radius: 10px;
  transform-style: preserve-3d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.third-section-card:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.third-section-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 15px;
  background-color: #a9c2cb;
  transition: transform 0.3s ease;
}

.third-section-card:hover .third-section-icon {
  transform: scale(1.1) rotate(10deg);
}

.third-section-icon img {
  width: 40px;
  height: 40px;
}

.third-section-content h3 {
  margin: 0 0 5px;
  font-size: 18px;
}

.third-section-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

.features {
  margin-top: 100px;
}

.features-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  min-height: 400px;
  padding: 64px;
  border-radius: 28px;
  background: url("/assets/Rectangle 8.png") no-repeat center/cover;
}

.features-title {
  text-align: center;
}

.features-title h2 {
  max-width: 800px;
  color: #fff;
  font-size: 42px;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 0 5px #000000, 0 0 10px #eb3a3a, 0 0 20px #e85900;
}

.features-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.features-card {
  width: 320px;
  min-height: 300px;
  padding: 24px;
  border-radius: 20px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.features-card:hover {
  transform: translateY(-10px);
}

.features-card h2 {
  margin-bottom: 6px;
  font-size: 56px;
  font-weight: 900;
  background: linear-gradient(135deg, #a9c2cb 0%, #a855f7 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.features-card:hover h2 {
  transform: scale(1.2) translateX(25px);
  filter: drop-shadow(0 0 30px rgb(255, 89, 0));
}

.features-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.features-card p {
  color: #000;
  font-size: 14px;
}

.join-us {
  margin-top: 290px;
}

.join-us-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 400px;
  margin-top: 100px;
  padding: 80px;
  border-radius: 28px;
  background: url("/assets/Rectangle 504.png") no-repeat center/cover;
}

.join-us-container h2 {
  max-width: 600px;
  color: #fff;
  font-size: 48px;
  line-height: 1.2;
}

.join-us-container p {
  max-width: 500px;
  margin-top: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 200;
}

.email {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.email-input {
  width: 500px;
  height: 55px;
  padding: 12px 16px;
  border: none;
  border-radius: 18px;
}

.email-input:focus {
  outline: none;
  transform: scale(1.02);
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.2);
  transition: all 0.3s ease;
}

.btn-email {
  position: relative;
  overflow: hidden;
  width: 160px;
  height: 60px;
  border: none;
  border-radius: 18px;
  background: #a9c2cb;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-email::after {
  content: "→";
  position: absolute;
  right: 20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.btn-email:hover::after {
  right: 15px;
  opacity: 1;
}

.btn-email::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-email:hover::before {
  width: 300px;
  height: 300px;
}

.btn-email:hover {
  background: rgb(47, 79, 165);
}

.footer {
  margin-top: 84px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer img {
  width: 95px;
}

.footer-links,
.footer-security {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  font-size: 14px;
  color: #000;
}

.footer-links {
  margin-left: 70px;
}

.footer > p {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  font-size: 13px;
  color: #5c5050;
}

.footer-links a:hover,
.footer-security a:hover {
  color: rgb(47, 79, 165);
}

.hero-text h1:nth-child(1) {
  animation-delay: 0.1s;
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-20px);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.03);
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(47, 78, 165, 0.712));
  }
}

@media (max-width: 1023px) and (min-width: 768px) {
  body {
    padding: 100px 40px 50px;
  }

  .header {
    padding: 24px 40px;
  }

  .header-right {
    gap: 18px;
  }

  .nav-links {
    gap: 18px;
    font-size: 14px;
  }

  .btn-signup {
    width: 120px;
    height: 45px;
    font-size: 14px;
    border-radius: 15px;
  }

  .lang-toggle {
    min-width: 68px;
    height: 44px;
    padding: 0 12px;
  }

  .hero-card {
    grid-template-columns: 1fr;
    min-height: 500px;
    padding: 40px;
  }

  .hero-text h1 {
    font-size: 36px;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 400px;
  }

  .at {
    width: 100%;
    margin-top: 30px;
    text-align: center;
  }

  .hero-girl {
    bottom: -250px;
    height: 600px;
    margin-left: 350px;
  }

  .stat-1 {
    top: 100px;
    right: -300px;
  }

  .stat-2 {
    left: 400px;
    top: 50px;
  }

  .stat-3 {
    right: 170px;
    top: 700px;
  }

  .partners {
    margin-top: 100px;
  }

  .third-section-container {
    flex-direction: column;
    gap: 40px;
  }

  .third-section-left h1 {
    width: 100%;
    font-size: 2.5rem;
    text-align: center;
  }

  .third-section-right {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-container {
    padding: 40px;
  }

  .features-title h2 {
    width: 100%;
    font-size: 28px;
  }

  .features-cards {
    gap: 20px;
  }

  .features-card {
    width: 280px;
    min-height: 250px;
  }

  .join-us {
    margin-top: 150px;
  }

  .join-us-container {
    padding: 50px;
    align-items: center;
    text-align: center;
  }

  .join-us-container h2,
  .join-us-container p {
    width: 100%;
  }

  .join-us-container h2 {
    font-size: 36px;
  }

  .email {
    justify-content: center;
  }

  .email-input {
    width: 350px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    margin-left: 0;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .app-install-banner {
    top: 8px;
    width: calc(100vw - 16px);
    border-radius: 14px;
  }

  .app-install-banner__inner {
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
  }

  .app-install-banner__actions {
    width: 100%;
    justify-content: flex-end;
  }

  .app-install-banner__btn {
    flex: 1;
  }

  body {
    padding: 88px 20px 40px;
  }

  .header {
    padding: 18px 20px;
  }

  .logo img {
    width: 120px;
  }

  .header-right {
    margin-left: auto;
    gap: 10px;
    align-items: center;
  }

  .header-right .mobile-about-link {
    order: 1;
  }

  .header-right .lang-dropdown {
    order: 2;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 20px;
    left: auto;
    width: min(320px, calc(100% - 40px));
    padding: 18px;
    gap: 14px;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .btn-signup {
    width: 100%;
    height: 46px;
    font-size: 14px;
    border-radius: 12px;
  }

  .lang-dropdown {
    width: auto;
  }

  .lang-toggle {
    width: auto;
    min-width: 66px;
    height: 40px;
    padding: 0 10px;
    justify-content: center;
  }

  .lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    margin-top: 0;
    padding: 8px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    z-index: 1300;
  }

  .mobile-about-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    background: #fff;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  }

  .hero-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 30px 20px;
  }

  .hero-text h1 {
    font-size: 28px;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 450px;
  }

  .at {
    width: 100%;
    margin-top: 30px;
    font-size: 14px;
    text-align: center;
  }

  .hero-girl {
    bottom: -350px;
    height: 400px;
    margin-left: 170px;
  }

  .Spacewalks {
    width: 200px;
  }

  .Exercises {
    width: 170px;
  }

  .Totaldays {
    width: 332px;
  }

  .stat-1 {
    top: 150px;
    right: -150px;
  }

  .stat-2 {
    left: 200px;
    top: 100px;
  }

  .stat-3 {
    left: 50%;
    right: auto;
    top: 528px;
    z-index: 8;
    transform: translateX(-50%);
  }

  .primary,
  .watch-video {
    width: 100%;
    max-width: 280px;
  }

  .partners {
    margin-top: 60px;
  }

  .partners-title {
    font-size: 12px;
  }

  .stats {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .community {
    padding: 48px 0;
  }

  .third-section-container {
    flex-direction: column;
    gap: 30px;
  }

  .third-section-left h1 {
    width: 100%;
    font-size: 1.8rem;
    text-align: center;
  }

  .third-section-right {
    grid-template-columns: 1fr;
  }

  .third-section-card {
    align-items: center;
    margin-bottom: 20px;
    text-align: center;
  }

  .features {
    margin-top: 60px;
  }

  .features-container {
    min-height: auto;
    padding: 30px 20px;
  }

  .features-title h2 {
    width: 100%;
    font-size: 24px;
  }

  .features-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .features-card {
    width: 100%;
    max-width: 350px;
    min-height: auto;
  }

  .features-card h2 {
    font-size: 40px;
  }

  .join-us {
    margin-top: 80px;
  }

  .join-us-container {
    min-height: auto;
    padding: 40px 20px;
    text-align: center;
  }

  .join-us-container h2 {
    width: 100%;
    font-size: 28px;
  }

  .join-us-container p {
    width: 100%;
    font-size: 14px;
  }

  .email {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .email-input,
  .btn-email {
    width: 100%;
    max-width: 300px;
  }

  .btn-email {
    margin-left: 0;
  }

  .footer {
    margin-top: 60px;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-links,
  .footer-security {
    margin-left: 0;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .footer > p {
    margin-top: 30px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 24px;
  }

  .third-section-left h1 {
    font-size: 1.5rem;
  }

  .features-title h2 {
    font-size: 20px;
  }

  .join-us-container h2 {
    font-size: 24px;
  }

  .primary,
  .watch-video {
    height: 50px;
    font-size: 16px;
  }
}

@media (max-width: 1023px) {
  .hero-card {
    overflow: hidden;
    padding-bottom: 120px;
    border-radius: 22px;
    background-position: 58% 50%;
  }

  .hero-visual {
    position: relative;
    min-height: 350px;
  }

  .hero-girl {
    left: 50%;
    right: auto;
    margin-left: 0;
    bottom: -24px;
    height: min(440px, 66vw);
    transform: translateX(-50%);
  }

  .middle {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .stat-1,
  .stat-2,
  .stat-3 {
    display: block;
  }

  .stat-1 { top: 62%; right: 2%; }
  .stat-2 { left: 2%; top: 50%; }
  .stat-3 {
    left: 50%;
    right: auto;
    top: auto;
    bottom: -5%;
    z-index: 8;
    transform: translateX(-50%);
  }

  .hero-actions {
    margin-top: 24px;
  }
}

@media (max-width: 767px) {
  .hero-card {
    padding: 22px 14px 32px;
    background-position: 62% 52%;
  }

  .hero-visual {
    min-height: 300px;
    margin-top: 10px;
    z-index: 0;
  }

  .hero-girl {
    bottom: -4px;
    height: min(360px, 90vw);
    z-index: 3;
  }

  .Spacewalks { width: min(150px, 38vw); }
  .Exercises { width: min(130px, 33vw); }
  .Totaldays { width: min(220px, 58vw); }

  .middle { inset: 0; }
  .stat-1 { top: 62%; right: 0; }
  .stat-2 { left: 0; top: 48%; }
  .stat-3 {
    left: 50%;
    right: auto;
    top: auto;
    bottom: -10%;
    z-index: 8;
    display: flex;
    justify-content: center;
    width: min(220px, 58vw);
    transform: translateX(-50%);
  }
  .stat-3 .Totaldays { width: 100%; margin-inline: auto; }

  .hero-text h1 { font-size: 25px; text-align: left; }
  .hero-actions { margin-top: 12px; }
  .primary, .watch-video { max-width: 100%; }

  .partners {
    margin-top: 40px;
  }
}
