@import url("https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;500;600;700&display=swap");

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

body {
  font-family: "Golos Text", "Segoe UI", Roboto, "Helvetica Neue", Arial,
    sans-serif;
  color: #161616;
  background: #ffffff;
  line-height: 1;
  overflow-x: hidden;
  max-width: 1920px;
  margin: 0 auto;
}

.container {
  max-width: 1720px;
  margin: 0 auto;
  box-sizing: border-box;
}

.gradient {
  background: linear-gradient(270.37deg, #E02DB1 0.32%, #FF5920 99.68%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.black {
  color: #161616;
}

/* ===== MAIN WRAPPER ===== */
.main-wrapper {
  display: flex;
  justify-content: center;
  padding: 16px 16px 0 16px;
  max-width: 1920px;
  margin: 0 auto;
}

.main {
  width: 100%;
  max-width: 1888px;
  height: calc(100vh - 16px);
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.bg-mobile {
  display: none;
}

.bg-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #f7f7f7;
  border-radius: 64px;
  overflow: hidden;
}

.bg-main img {
  position: absolute;
  object-fit: contain;
}

.bg-main-pin-left {
  top: 0;
  left: 0;
  max-width: 100%;
  height: auto;
  border-radius: 64px 0 0 0;
  animation: slideLeftPipe 3s ease-out forwards;
}

@keyframes slideLeftPipe {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-25%, -10%);
  }
}

.bg-main-pin-right {
  bottom: -15%;
  right: 0;
  max-width: 100%;
  height: auto;
  border-radius: 0 0 64px 0;
}

@keyframes fadeInAndFloat {
  0% {
    opacity: 0;
  }

  40% {
    opacity: 0;
  }

  60% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes floatUpDown1 {

  0%,
  100% {
    transform: translateY(0) translateX(-50%);
  }

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

@keyframes floatUpDown2 {

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

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

@keyframes floatUpDown3 {

  0%,
  100% {
    transform: translateY(0) translateX(-50%) rotate(75deg);
  }

  50% {
    transform: translateY(-6px) translateX(-50%) rotate(75deg);
  }
}

@keyframes floatUpDown4 {

  0%,
  100% {
    transform: translateY(0) translateX(-50%);
  }

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

@keyframes floatUpDown3Coin {

  0%,
  100% {
    transform: translateY(0) rotate(3deg);
  }

  50% {
    transform: translateY(-6px) rotate(3deg);
  }
}

.bg-main-glass-01 {
  top: -3%;
  left: 53.5%;
  width: min(300px, 18vw, 20%);
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeInAndFloat 5s ease-out forwards,
    floatUpDown1 4s ease-in-out 3s infinite;
}

.bg-main-glass-02 {
  bottom: 25%;
  right: 30%;
  width: min(250px, 14vw, 16%);
  z-index: 3;
  opacity: 0;
  animation: fadeInAndFloat 5s ease-out forwards,
    floatUpDown2 5s ease-in-out 3s infinite;
}

.bg-main-percent-01 {
  top: 38%;
  left: 44%;
  width: min(250px, 25vw, 300px);
  transform: translateX(-50%) rotate(75deg);
  opacity: 0;
  animation: fadeInAndFloat 5s ease-out forwards,
    floatUpDown3 4.5s ease-in-out 3s infinite;
}

.bg-main-percent-02 {
  top: 15%;
  left: 65%;
  width: min(183px, 12vw, 14%);
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeInAndFloat 5s ease-out forwards,
    floatUpDown4 5.5s ease-in-out 3s infinite;
}

.bg-main-coin-main-01 {
  bottom: 25%;
  right: 25%;
  width: min(220px, 13vw, 15%);
  z-index: 2;
  opacity: 0;
  animation: fadeInAndFloat 5s ease-out forwards,
    floatUpDown2 4.2s ease-in-out 3s infinite;
}

.bg-main-coin-main-02 {
  bottom: 53%;
  right: 9%;
  width: min(150px, 16vw, 270px);
  height: auto;
  transform: rotate(3deg);
  opacity: 0;
  animation: fadeInAndFloat 5s ease-out forwards,
    floatUpDown3Coin 5.8s ease-in-out 3s infinite;
}

/* ===== FIXED HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 84px 84px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.header-container {
  max-width: 1720px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.4);
  padding: 16px;
  border-radius: 28px;
  box-shadow: 0px 12px 32px 0px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(24px)
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 5px;
  text-decoration: none;
  margin-left: 24px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
}

.nav-link {
  position: relative;
  display: block;
  padding: 0;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 500;
  line-height: 100%;
  color: #161616;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.nav-link:hover {
  opacity: 0.6;
}

.nav-button {
  position: relative;
  width: 270px;
  padding: 16px 32px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  line-height: 100%;
  border: 1.5px solid rgba(22, 22, 22, 0.15);
  border-radius: 18px;
  text-decoration: none;
  cursor: pointer;
  color: #161616;
  transition: all 0.3s ease;
  text-align: center;
  display: inline-block;
}

.nav-button:hover {
  color: #b5b5b5;
}

.nav-button:focus {
  outline: none;
  border: 2px solid #a97ef8;
  padding: 15px 31px;
}

.burger-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 16px;
  position: relative;
}

.burger-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #161616;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.burger-toggle span:nth-child(1) {
  top: 0;
}

.burger-toggle span:nth-child(2) {
  bottom: 0;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  width: 100%;
  z-index: 200;
  padding: 0;
  margin-top: 0;
}

.hero-container {
  width: 100%;
  max-width: 1720px;
  box-sizing: border-box;
  padding: 0 84px 84px 84px;
}

.hero-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1000px;
}

h1 {
  margin: 0;
  padding: 0;
  font-size: clamp(32px, 5.5vw, 60px);
  font-weight: 500;
  line-height: 1.1;
  cursor: default;
}

h2,
h3,
p {
  cursor: default;
}

.hero-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: fit-content;
}

.hero-btn {
  position: relative;
  width: 268px;
  padding: 16px 32px;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 500;
  line-height: 100%;
  color: #ffffff;
  background: #161616;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: none;
}

.hero-btn:hover {
  background: #161616;
  color: #b5b5b5;
}

.hero-btn:active {
  background: #161616;
  color: #8a8a8a;
}

.hero-btn:focus {
  background: #161616;
  color: #ffffff;
  outline: none;
  border: 2px solid #a97ef8;
  padding: 15px 31px;
}

.hero-partner-btn {
  display: none;
  padding: 16px 32px;
  width: 268px;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 500;
  line-height: 100%;
  border: 1px solid rgba(22, 22, 22, 0.15);
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  color: #161616;
  transition: all 0.3s ease;
}

.hero-partner-btn:hover {
  color: #b5b5b5;
}

.hero-partner-btn:active {
  color: #8a8a8a;
}

.hero-partner-btn:focus {
  color: #ffffff;
  outline: none;
  border: 2px solid #a97ef8;
  padding: 15px 31px;
}

.word-rotate-container {
  display: inline-block;
  position: relative;
  min-width: 330px;
  height: 0.93em;
  vertical-align: bottom;
  overflow: hidden;
}

.rotate-word {
  position: absolute;
  left: 0;
  top: 0;
  margin: -10px 0 0 0;
  padding: 0;
  white-space: nowrap;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  background: linear-gradient(270.39deg, #7028F4 0.34%, #E02DB1 98.15%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  clip-path: inset(0 100% 0 0);
  opacity: 0;
}

.rotate-word.active {
  opacity: 1;
}

@keyframes slideInFromLeft {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes slideOutToLeft {
  from {
    clip-path: inset(0 0 0 0);
  }

  to {
    clip-path: inset(0 100% 0 0);
  }
}

.rotate-word.sliding-in {
  animation: slideInFromLeft 0.5s ease-in-out forwards;
}

.rotate-word.sliding-out {
  animation: slideOutToLeft 0.3s ease-in-out forwards;
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  20%,
  60% {
    transform: translateX(-5px);
  }

  40%,
  80% {
    transform: translateX(5px);
  }
}

.shake-animation {
  animation: shake 0.5s ease-in-out;
}

/* ===== BURGER MENU ===== */
.burger-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  z-index: 1001;
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.3s ease;
}

.burger-menu.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.burger-content {
  padding: 40px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.burger-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 -10px 60px -3px;
}

.burger-close {
  background: none;
  border: none;
  font-size: 32px;
  color: #161616;
  cursor: pointer;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.burger-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.burger-link {
  font-size: 32px;
  font-weight: 500;
  color: #161616;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.burger-link:hover {
  opacity: 0.6;
}

/* ===== SAFETY SECTION ===== */
#about {
  scroll-margin-top: 100px;
}

.safety-section {
  padding: 100px 0 50px 0;
  background: #ffffff;
}

.safety-content {
  margin: 0 auto;
}

.safety-title {
  margin-bottom: 56px;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 500;
  line-height: 110%;
}

.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 8px;
  min-height: auto;
}

.safety-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 72px);
  background: #f7f7f7;
  border-radius: clamp(32px, 5vw, 56px);
  min-height: min(396px, 40vh);
  max-height: 396px;
  width: 100%;
  height: 100%;
}

.safety-card h3 {
  margin: 0;
  font-size: clamp(16px, 3vw, 40px);
  font-weight: 500;
  line-height: 115%;
  color: #161616;
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
}

.safety-icon {
  width: clamp(40px, 8vw, 80px);
  height: clamp(40px, 8vw, 80px);
  margin-bottom: 15px;
  object-fit: contain;
}

.rotate-minus-7 {
  transform: rotate(-7deg);
}

.rotate-5 {
  transform: rotate(5deg);
}

.safety-card-percent {
  grid-column: 1;
  grid-row: 2;
  padding: 0;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(396px, 40vh);
  max-height: 396px;
  height: 100%;
}

.percent-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.safety-card-image {
  grid-column: 2;
  grid-row: 1 / 3;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7f7;
  border-radius: clamp(32px, 5vw, 56px);
  overflow: visible;
  width: 100%;
  height: 100%;
  min-height: auto;
}

.image-container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-icon-01 {
  position: absolute;
  bottom: -60px;
  left: -18%;
  z-index: 3;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.main-icon-02 {
  position: absolute;
  top: -240px;
  right: -110px;
  z-index: 4;
  width: 93%;
  height: auto;
  object-fit: contain;
}

.main-icon-03 {
  position: absolute;
  top: -65px;
  left: -110px;
  z-index: 3;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.main-icon-03-mobile {
  display: none;
}

.overlay-text {
  position: absolute;
  bottom: 5%;
  left: 0;
  right: 0;
  z-index: 5;
  padding: clamp(24px, 2vw, 40px);
}

.overlay-text p {
  margin: 0;
  font-size: clamp(20px, 2.5vw, 40px);
  font-weight: 500;
  line-height: 115%;
  color: #161616;
}

/* ===== STEPS SECTION ===== */
#how {
  scroll-margin-top: 100px;
}

.steps-section {
  padding: 50px 0;
  background: #ffffff;
  overflow: hidden;
}

.steps-content {
  margin: 0 auto;
  padding: 0 84px;
}

.steps-title {
  margin-bottom: 50px;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 500;
  line-height: 1.1;
  max-width: 80%;
}

.steps-title br {
  display: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.step-card {
  position: relative;
  padding: clamp(24px, 4vw, 72px);
  background: #f7f7f7;
  border-radius: clamp(32px, 5vw, 56px);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}

.step-icon {
  width: clamp(40px, 9vw, 80px);
  height: clamp(40px, 9vw, 80px);
  margin-bottom: clamp(24px, 4vw, 56px);
  object-fit: contain;
}

.step-icon.last-step-icon {
  width: 105px;
  margin-left: -25px;
  position: relative;
  top: -5px;
}

.step-card h3 {
  margin: 0;
  font-size: clamp(16px, 2.5vw, 40px);
  font-weight: 500;
  line-height: 1.15;
  color: #161616;
}

/* ===== CTA SECTION ===== */
#partner {
  scroll-margin-top: 100px;
}

.cta-section {
  margin: 80px auto;
}

.cta-wrapper {
  display: flex;
  justify-content: center;
  margin: 0 64px;
}

.cta-content {
  background-image: url("./../images/bg.png");
  background-size: cover;
  background-position: center;
  padding: clamp(36px, 5vw, 72px);
  border-radius: clamp(32px, 5vw, 56px);
  color: #fff;
  max-width: 1720px;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.cta-section h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 500;
  line-height: 1.1;
  cursor: default;
}

.cta-text {
  margin-bottom: clamp(40px, 6vw, 84px);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.3;
  max-width: 600px;
  text-align: center;
  cursor: default;
}

.cta-form {
  position: relative;
  display: flex;
  justify-content: center;
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
}

.cta-form-wrapper {
  position: relative;
  width: 100%;
}

.cta-form-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.cta-form input {
  width: 100%;
  padding: 14px 48px 14px 32px;
  font-size: 24px;
  font-family: "Golos Text", sans-serif;
  color: #161616;
  background: white;
  border: none;
  border-radius: 16px;
}

.cta-form input::placeholder {
  color: #999;
}

.cta-form input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.cta-text-below {
  max-width: 450px;
  margin: 6px auto;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 400;
  line-height: 120%;
  opacity: 80%;
  text-align: center;
  cursor: default;
}

.cta-text-below span {
  text-decoration: underline;
  cursor: pointer;
}

/* ===== FAQ SECTION ===== */
#faq {
  scroll-margin-top: 100px;
}

.faq-section {
  padding: 50px 0;
  background: #ffffff;
}

.faq-content {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 80px);
}

.faq-left {
  font-size: clamp(26px, 4.5vw, 60px);
  font-weight: 500;
  line-height: 110%;
  cursor: default;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 40px);
  margin-top: 14px;
}

.faq-item {
  position: relative;
  padding-bottom: clamp(24px, 3vw, 40px);
  border-bottom: 1px solid #c0c0c0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  margin-bottom: 16px;
  font-size: clamp(20px, 2vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  color: #161616;
  cursor: default;
}

.faq-answer {
  font-size: clamp(16px, 1.5vw, 24px);
  font-weight: 400;
  line-height: 1.3;
  color: #161616;
  max-width: 712px;
  cursor: default;
}

.faq-answer a {
  color: #7028f4;
  text-decoration: none;
  font-weight: 500;
  transition: text-decoration 0.3s ease;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* ===== BOTTOM TEXT SECTION ===== */
.bottom-text {
  padding: 50px 0;
  background: #ffffff;
  color: #787878;
}

.bottom-text h3 {
  margin-bottom: 20px;
  font-size: clamp(16px, 2.5vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  color: #161616;
  opacity: 0.6;
}

/* ===== FOOTER ===== */
footer {
  padding: 22px 0 72px;
  background: #ffffff;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  gap: 40px;
}

.footer-section {
  flex: 1;
  max-width: 400px;
}

.footer-section div {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  color: #787878;
  cursor: pointer;
}

.footer-section div:hover {
  color: #161616;
}

.footer-section h3 {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  color: #787878;
}

.footer-section h3 span {
  cursor: pointer;
  text-decoration: underline;
}

.footer-section h3 span:hover {
  color: #161616;
}

.footer-section a {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  color: #787878;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #161616;
}

.footer-section p {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  color: #787878;
}

.footer-bottom {
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  color: #787878;
  text-align: left;
}

/* ===== MEDIA QUERIES ===== */
@media (min-width: 1920px) {

  .safety-content,
  .steps-content,
  .faq-content {
    padding: 0;
  }
}

@media (min-width: 1720px) and (max-width: 1920px) {

  .safety-content,
  .steps-content,
  .faq-conten,
  .bottom-text .container,
  footer .containert {
    padding: 0;
  }

  section,
  footer,
  .cta-wrapper {
    margin: 0 max(0px, calc((1920px - 100vw) / 2));
  }

  section.hero {
    margin: 0;
  }
}

@media (min-width: 992px) and (max-width: 1720px) {

  .safety-content,
  .steps-content,
  .faq-content,
  .bottom-text .container,
  footer .container {
    padding: 0 64px;
  }
}

@media (max-width: 1820px) {
  .bg-main-percent-01 {
    top: 28%;
    left: 45%;
  }

  .bg-main-pin-right {
    max-width: 40%;
    top: 0;
  }

  .bg-main-coin-main-02 {
    bottom: 63%;
    right: 8%;
  }

  .desktop-nav {
    gap: 16px;
  }

  .nav-link {
    font-size: 24px;
  }

  .nav-button {
    width: 100%;
    max-width: 270px;
    margin-left: 40px;
  }
}

@media (max-width: 1720px) {
  header {
    padding: 64px 64px 0;
  }

  .main-icon-01 {
    bottom: -20px;
  }
}

@media (max-width: 1620px) {
  .main-icon-01 {
    bottom: 10px;
  }

  .main-icon-02 {
    top: -230px;
    right: -85px;
  }
}

@media (max-width: 1500px) {
  .bg-main-percent-01 {
    top: 23%;
    left: 46%;
  }

  .bg-main-coin-main-02 {
    bottom: 64%;
    right: 9%;
  }

  .safety-card {
    min-height: min(300px, 35vh);
  }

  .safety-card h3 {
    font-size: clamp(16px, 2.5vw, 40px);
  }

  .main-icon-01 {
    bottom: -40px;
  }

  .main-icon-02 {
    top: -180px;
    right: -80px;
  }

  .main-icon-03 {
    left: -100px;
    top: -55px;
  }
}

@media (max-width: 1340px) {
  .safety-card {
    min-height: min(240px, 25vh);
  }

  .bg-main-coin-main-02 {
    bottom: 64%;
    right: 9%;
  }

  .bg-main-percent-01 {
    top: 18%;
    left: 47%;
  }

  .main-icon-01 {
    bottom: -30px;
  }

  .main-icon-02 {
    top: -160px;
    right: -70px;
  }

  .main-icon-03 {
    left: -80px;
    top: -55px;
  }

  .steps-title br {
    display: block;
  }
}

@media (max-width: 1200px) {
  header {
    padding: 64px 64px 0;
  }

  .burger-content {
    padding: 87px 100px 84px;
  }

  .burger-toggle {
    display: block;
  }

  .hero-partner-btn {
    display: block;
  }

  .active .logo {
    margin-left: 0;
  }

  .desktop-nav {
    display: none;
  }

  .header-container {
    padding: 32px;
  }

  .logo {
    margin-left: 0;
  }

  .bg-main-percent-01 {
    top: 15%;
    left: 47%;
  }

  .bg-main-coin-main-02 {
    bottom: 69%;
    right: 9%;
  }

  .main-icon-02 {
    top: -135px;
    right: -65px;
  }

  .main-icon-03 {
    left: -80px;
    top: -40px;
  }

  .faq-list {
    margin-top: 12px;
  }

  .faq-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-left {
    font-size: 60px;
  }

  .faq-question {
    font-size: 40px;
  }

  .faq-answer {
    font-size: 24px;
  }

  .burger-nav div {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 32px;
  }

  .steps-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 16px;
    padding-left: 32px;
    margin-right: -64px;
  }

  .steps-grid::-webkit-scrollbar {
    display: none;
  }

  .step-card {
    flex: 0 0 600px;
    max-width: 600px;
    scroll-snap-align: start;
    margin-right: 8px;
    height: 400px;
    max-height: 100%;
  }

  .step-card:first-child {
    margin-left: 64px;
  }

  .step-card:last-child {
    margin-right: 64px;
  }
}

@media (max-width: 1100px) {
  .bg-main-percent-01 {
    top: 14%;
    left: 47%;
  }

  .bg-main-coin-main-02 {
    bottom: 70%;
    right: 8%;
  }

  .main-icon-01 {
    bottom: 0;
  }

  .main-icon-02 {
    top: -145px;
    right: -60px;
  }

  .main-icon-03 {
    left: -60px;
    top: -20px;
  }
}

@media (max-width: 992px) {
  .logo {
    margin-left: 0;
  }

  .logo-img {
    width: 136px;
    height: 16px;
  }

  .main-wrapper {
    padding: 0;
  }

  header {
    padding: 32px 32px 0;
  }

  .main {
    height: 100vh;
  }

  .bg-main {
    display: none;
  }

  .bg-mobile {
    display: block;
    background-color: #f7f7f7;
    position: absolute;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
  }

  .bg-mobile-coin-01 {
    position: absolute;
    top: 100px;
    left: -68px;
    max-width: 30%;
    object-fit: cover;
  }

  .bg-mobile-glass-01 {
    position: absolute;
    top: 180px;
    left: 12%;
    width: 160px;
    height: 160px;
    object-fit: cover;
  }

  .bg-mobile-coin-02 {
    position: absolute;
    bottom: 430px;
    right: 21%;
    width: 210px;
    height: 210px;
    object-fit: cover;
  }

  .bg-mobile-glass-02 {
    position: absolute;
    bottom: 420px;
    right: 32%;
    width: 120px;
    height: 120px;
    object-fit: cover;
  }

  .bg-mobile-percent-01 {
    position: absolute;
    width: 160px;
    height: 160px;
    top: 430px;
    left: 30%;
    object-fit: cover;
  }

  .bg-mobile-percent-02 {
    position: absolute;
    width: 270px;
    height: 270px;
    top: 70px;
    right: 4%;
    object-fit: cover;
  }

  .bg-mobile-glass-03 {
    position: absolute;
    top: 172px;
    right: 18%;
    width: 110px;
    height: 110px;
    object-fit: cover;
    z-index: 2;
  }

  .nav-button {
    padding: 8px 16px;
  }

  .container {
    padding: 0 64px;
  }

  .hero-container {
    padding: 0 64px 64px 64px;
  }

  .hero-buttons {
    flex-direction: row;
  }

  .cta-wrapper {
    margin: 0 64px;
  }

  .cta-text {
    max-width: 480px;
  }

  .steps-title {
    margin-bottom: 40px;
  }

  .burger-header {
    max-height: 26px;
  }

  .burger-content {
    padding: 64px;
  }

  .burger-header {
    margin: 0;
  }

  .burger-nav {
    gap: 24px;
  }

  .safety-content,
  .steps-content,
  .faq-content {
    padding: 0;
  }

  .safety-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }

  .safety-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .safety-card-percent {
    grid-column: 2;
    grid-row: 1;
  }

  .safety-card-image {
    grid-column: 1 / 3;
    grid-row: 2;
    min-height: 220px;
  }

  .safety-card:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
  }

  .safety-card:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
  }

  .safety-card,
  .safety-card-image {
    border-radius: 32px;
    max-height: 220px;
    min-height: 280px;
  }

  .overlay-text {
    padding: 56px;
  }

  .safety-card,
  .step-card {
    padding: 56px;
  }

  .safety-card-percent {
    padding: 0;
  }

  .main-icon-01 {
    bottom: -46px;
    left: 43%;
    width: 28%;
    height: auto;
    object-fit: cover;
  }

  .main-icon-02 {
    top: -135px;
    left: 57%;
    width: 32%;
    height: auto;
    object-fit: cover;
  }

  .main-icon-03 {
    top: -70px;
    left: 74%;
    width: 32%;
    height: auto;
    object-fit: cover;
  }

  .footer-section {
    max-width: 100%;
  }

  .safety-section {
    padding: 64px 0 20px;
  }

  .steps-section,
  .faq-section,
  .bottom-text,
  footer {
    padding: 20px 0;
  }

  .cta-section {
    margin: 20px auto;
  }

  .faq-list {
    margin-top: 0;
  }

  h1,
  .safety-title,
  .steps-title,
  .faq-left {
    font-size: 48px;
  }

  .safety-card h3,
  .overlay-text p,
  .step-card h3,
  .faq-question {
    font-size: 32px;
  }

  .faq-answer {
    font-size: 16px;
  }

  .step-card {
    flex: 0 0 600px;
    max-width: 600px;
    height: 360px;
  }
}

@media (max-width: 840px) {
  .footer-content {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .rotate-word {
    margin: -6px 0 0 0;
  }

  .logo {
    align-items: normal;
  }

  .header-content {
    height: 26px;
  }

  .header-container {
    padding: 16px;
    border-radius: 18px;
  }

  .safety-section {
    padding: 48px 0 20px;
  }

  .burger-nav div,
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .burger-toggle {
    width: 24px;
  }

  .burger-close {
    font-size: 24px;
    width: 30px;
    height: 30px;
  }

  .hero-btn,
  .hero-text,
  .hero-partner-btn {
    width: 100%;
  }

  .container {
    padding: 0;
  }

  .hero-container {
    padding: 0 32px 64px 32px;
  }

  .cta-wrapper {
    margin: 0 32px;
  }

  .cta-content {
    display: inline-block;
    text-align: left;
  }

  .cta-form {
    margin: 0;
  }

  .cta-text-below {
    margin: 6px;
    text-align: left;
  }

  .cta-text {
    margin-bottom: 32px;
    text-align: left;
  }

  header {
    padding: 32px 16px 0;
    border-radius: 18px;
  }

  .burger-content {
    padding: 48px 32px 64px;
  }

  .burger-header {
    padding: 0;
  }

  .burger-nav {
    gap: 18px;
  }

  .cta-form {
    flex-direction: column;
  }

  .safety-content {
    padding: 0 32px;
  }

  .steps-content {
    padding: 0 32px;
  }

  .faq-content,
  .bottom-text,
  footer {
    padding: 0 32px;
  }

  .main-icon-01 {
    top: -170px;
    left: 40%;
    width: 215px;
    height: 220px;
  }

  .main-icon-02 {
    top: -110px;
    left: 56%;
    width: 255px;
    height: 230px;
  }

  .main-icon-03 {
    display: none;
  }

  .main-icon-03-mobile {
    display: block;
    position: absolute;
    top: -40px;
    right: 0;
  }

  .footer-bottom {
    padding-bottom: 32px;
  }

  .bg-mobile-coin-01 {
    top: 100px;
    left: -68px;
    max-width: 35%;
  }

  .bg-mobile-glass-01 {
    top: 170px;
    width: 160px;
    height: 160px;
  }

  .bg-mobile-coin-02 {
    bottom: 430px;
    right: 16%;
    width: 210px;
    height: 210px;
  }

  .bg-mobile-glass-02 {
    bottom: 420px;
    right: 30%;
    width: 120px;
    height: 120px;
  }

  .bg-mobile-percent-01 {
    width: 160px;
    height: 160px;
    top: 430px;
    left: 22%;
  }

  .bg-mobile-percent-02 {
    width: 270px;
    height: 270px;
    top: 70px;
    right: 3%;
  }

  .bg-mobile-glass-03 {
    top: 172px;
    right: 21%;
    width: 110px;
    height: 110px;
  }

  h1,
  .safety-title,
  .steps-title,
  .faq-left {
    font-size: 40px;
  }

  .safety-card h3,
  .overlay-text p,
  .step-card h3,
  .faq-question {
    font-size: 24px;
  }

  .faq-answer {
    font-size: 16px;
  }

  .faq-question {
    margin-bottom: 8px;
  }

  .overlay-text {
    padding: 48px;
  }

  .steps-grid {
    margin-right: -32px;
  }

  .safety-card,
  .step-card {
    padding: 48px;
  }

  .step-card:last-child {
    margin-right: 32px;
  }

  .safety-card-percent {
    padding: 0;
  }

  .safety-card,
  .safety-card-image {
    min-height: 250px;
  }

  .step-card {
    flex: 0 0 460px;
    max-width: 460px;
    height: 270px;
  }
}

@media (max-width: 640px) {
  .safety-title {
    margin-bottom: 24px;
  }

  .container {
    padding: 0 8px;
  }

  .hero-text {
    width: 100%;
  }

  .cta-wrapper {
    margin: 0 24px;
  }

  .hero-buttons {
    width: 100%;
  }

  .hero-btn,
  .hero-partner-btn {
    width: 100%;
  }

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

  .safety-content {
    padding: 0 16px;
  }

  .steps-content {
    padding: 0 16px;
  }

  .faq-content {
    padding: 0 16px;
  }

  .cta-form input {
    font-size: 16px;
  }

  .main-icon-01 {
    top: -160px;
    left: 30%;
    width: 215px;
    height: 200px;
  }

  .main-icon-02 {
    top: -115px;
    left: 47%;
    width: 245px;
    height: 230px;
  }

  .main-icon-03 {
    top: -75px;
    left: 65%;
    width: 230px;
    height: 230px;
  }

  .faq-content,
  .bottom-text,
  footer {
    padding: 0 16px;
  }

  .step-card h3 {
    font-size: 20px;
  }

  .bg-mobile-glass-01 {
    top: 140px;
    left: 8%;
    width: 160px;
    height: 160px;
  }

  .bg-mobile-percent-01 {
    left: 10%;
  }

  .bg-mobile-percent-02 {
    right: 0;
  }

  .bg-mobile-glass-02 {
    right: 33%;
  }

  .steps-grid {
    margin-right: -24px;
  }

  .step-card:last-child {
    margin-right: 24px;
  }
}

@media (max-width: 576px) {
  header {
    padding: 8px 8px 0;
  }

  .burger-content {
    padding: 25px 24px;
  }

  .hero-container {
    padding: 0 24px 24px 24px;
  }

  .burger-toggle {
    width: 20px;
    height: 12px;
  }

  .burger-close {
    font-size: 24px;
    width: 24px;
    height: 24px;
  }

  .bg-mobile-coin-01 {
    top: 100px;
    left: -68px;
    max-width: 35%;
  }

  .bg-mobile-glass-01 {
    top: 130px;
    left: 6%;
    width: 140px;
    height: 140px;
  }

  .bg-mobile-coin-02 {
    bottom: 430px;
    right: 25%;
    width: 170px;
    height: 170px;
  }

  .bg-mobile-glass-02 {
    bottom: 410px;
    right: 39%;
    width: 120px;
    height: 120px;
  }

  .bg-mobile-percent-01 {
    width: 160px;
    height: 160px;
    top: 430px;
    left: 10%;
  }

  .bg-mobile-percent-02 {
    width: 240px;
    height: 240px;
  }

  .bg-mobile-glass-03 {
    top: 172px;
    right: 23%;
    width: 80px;
    height: 80px;
  }

  .main-icon-01 {
    top: -160px;
    left: 35%;
    width: 185px;
    height: 175px;
  }

  .main-icon-02 {
    top: -100px;
    left: 52%;
    width: 190px;
    height: 190px;
  }

  .main-icon-03 {
    top: -45px;
    left: 65%;
    width: 210px;
    height: 210px;
  }

  .cta-content {
    text-align: left;
  }

  .cta-form input {
    padding: 16px;
  }

  .cta-text-below {
    font-size: 12px;
  }

  h1,
  .safety-title,
  .steps-title,
  .faq-left {
    font-size: 32px;
  }

  .safety-card h3,
  .overlay-text p,
  .step-card h3,
  .faq-question {
    font-size: 20px;
  }

  .safety-section {
    padding: 32px 0 16px;
  }

  .faq-answer {
    font-size: 16px;
  }

  .overlay-text {
    padding: 40px;
  }

  .safety-card,
  .step-card {
    padding: 40px;
  }

  .safety-card-percent {
    padding: 0;
  }

  .safety-card,
  .safety-card-image {
    min-height: 250px;
  }

  .safety-icon {
    width: 58px;
    height: 58px;
  }

  .steps-section,
  .faq-section {
    padding: 16px 0;
  }

  .steps-title {
    margin-bottom: 24px;
  }

  .bottom-text,
  footer {
    padding: 0 16px;
  }

  .step-card {
    flex: 0 0 400px;
    max-width: 400px;
    height: 240px;
  }

  .step-icon {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 480px) {
  .burger-content {
    padding: 25px 24px 40px;
  }

  .container {
    padding: 0 16px;
  }

  .hero-container {
    padding: 0 24px 40px 24px;
  }

  .cta-wrapper {
    margin: 0 24px;
  }

  .safety-content {
    padding: 0 8px;
  }

  .steps-content {
    padding: 0 8px;
  }

  .faq-content {
    padding: 0 8px;
  }

  .main-icon-01 {
    top: -170px;
    left: -25px;
    width: 200px;
    height: 230px;
  }

  .main-icon-02 {
    top: -120px;
    left: 80px;
    width: 230px;
    height: 240px;
  }

  .main-icon-03 {
    top: -55px;
    left: 45%;
    width: 200px;
    height: 215px;
  }

  .main-icon-03-mobile {
    width: 200px;
    top: -55px;
  }

  .safety-card {
    padding: 24px;
    min-height: 160px;
  }

  .step-card {
    padding: 24px;
  }

  .overlay-text {
    padding: 24px;
  }

  .safety-card-percent {
    padding: 0;
  }

  .bg-mobile-coin-01 {
    top: 65px;
    left: -68px;
    max-width: 55%;
  }

  .bg-mobile-glass-01 {
    top: 110px;
    left: 13%;
    width: 160px;
    height: 160px;
  }

  .bg-mobile-coin-02 {
    bottom: 300px;
    right: 4%;
    width: 140px;
    height: 140px;
  }

  .bg-mobile-glass-02 {
    bottom: 290px;
    right: 24%;
    height: 90px;
    width: 80px;
  }

  .bg-mobile-percent-01 {
    width: 80px;
    height: 80px;
    top: 268px;
    left: 25%;
  }

  .bg-mobile-percent-02 {
    width: 190px;
    height: 190px;
    top: 10px;
  }

  .bg-mobile-glass-03 {
    top: 95px;
    right: 30%;
    width: 45px;
    height: 60px;
  }

  .cta-content {
    padding: 32px 24px;
  }

  .cta-section h2 {
    margin-bottom: 8px;
  }

  .cta-text {
    margin-bottom: 16px;
    font-size: 16px;
  }

  h1,
  .safety-title,
  .steps-title,
  .faq-left {
    font-size: 32px;
  }

  .safety-card h3,
  .overlay-text p,
  .step-card h3,
  .faq-question {
    font-size: 16px;
  }

  .safety-section {
    padding: 48px 0 16px;
  }

  .faq-answer {
    font-size: 16px;
  }

  .safety-icon {
    width: 40px;
    height: 40px;
  }

  .steps-section,
  .faq-section {
    padding: 16px 0;
  }

  .steps-title {
    margin-bottom: 24px;
  }

  .bottom-text,
  footer {
    padding: 0 8px;
  }

  .hero-btn {
    border-radius: 12px;
  }

  .step-card {
    flex: 0 0 300px;
    max-width: 300px;
    height: 180px;
  }

  .step-icon {
    width: 40px;
    height: 40px;
  }

  .steps-title {
    max-width: 100%;
  }
}

@keyframes fadeInMobile {
  0% {
    opacity: 0;
  }

  70% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes floatMobile1 {

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

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

@keyframes floatMobile2 {

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

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

@keyframes floatMobile3 {

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

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

@keyframes floatMobile4 {

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

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

.bg-mobile-coin-01 {
  opacity: 0;
  animation: fadeInMobile 3s ease-out forwards,
    floatMobile1 4s ease-in-out 3s infinite;
}

.bg-mobile-coin-02 {
  opacity: 0;
  animation: fadeInMobile 3s ease-out forwards,
    floatMobile2 3.5s ease-in-out 3s infinite;
}

.bg-mobile-glass-01 {
  opacity: 0;
  animation: fadeInMobile 3s ease-out forwards,
    floatMobile3 3.5s ease-in-out 3s infinite;
}

.bg-mobile-glass-02 {
  opacity: 0;
  animation: fadeInMobile 3s ease-out forwards,
    floatMobile4 3.2s ease-in-out 3s infinite;
}

.bg-mobile-glass-03 {
  opacity: 0;
  animation: fadeInMobile 3s ease-out forwards,
    floatMobile1 3.8s ease-in-out 3s infinite;
}

.bg-mobile-percent-01 {
  opacity: 0;
  animation: fadeInMobile 3s ease-out forwards,
    floatMobile2 3.8s ease-in-out 3s infinite;
}

.bg-mobile-percent-02 {
  opacity: 0;
  animation: fadeInMobile 3s ease-out forwards,
    floatMobile3 3.2s ease-in-out 3s infinite;
}

@keyframes floatRotate1 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(3deg);
  }
}

@keyframes floatRotate2 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(-2deg);
  }
}

.bg-mobile-coin-01 {
  opacity: 0;
  animation: fadeInMobile 4s ease-out forwards,
    floatRotate1 5s ease-in-out 3s infinite;
}

.bg-mobile-percent-01 {
  opacity: 0;
  animation: fadeInMobile 4s ease-out forwards,
    floatRotate2 4.8s ease-in-out 3s infinite;
}

.bg-mobile-percent-02 {
  opacity: 0;
  animation: fadeInMobile 4s ease-out forwards,
    floatRotate1 5.2s ease-in-out 3s infinite;
}