* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Cera Pro", sans-serif;
}
a {
  text-decoration: none;
}
header {
  background-color: white;
  display: flex;
  border-radius: 0px 0px 20px 20px;
  position: fixed;
  width: 100%;
  padding: 15px 40px;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.pc_header {
  display: flex;
  width: 100%;
  max-width: 1200px;
  justify-content: space-between;
  align-items: center;
}
nav {
  display: flex;
  gap: 30px;
}
.pc_header a {
  color: black;
  font-weight: 400;
  font-size: 13px;
}
.pc_header button {
  background-color: black;
  color: white;
  padding: 16px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
}
.mobile_header {
  display: none;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.mobile_header button {
  border: none;
  background: transparent;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .pc_header {
    display: none;
  }
  .mobile_header {
    display: flex;
  }
  header {
    padding: 15px 20px;
  }
}

/* Mobile menu */
.mobile_menu {
  display: none;
}

@media screen and (max-width: 768px) {
  body.menu_open {
    overflow: hidden;
  }

  .mobile_menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    max-height: 360px;
    height: min(360px, 100vh);
    z-index: 1200;
    background: #f2f2f2;
    border-radius: 0 0 30px 30px;
    padding: 18px 20px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
  }

  .mobile_menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile_menu_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile_menu_top .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .menu_close {
    border: none;
    background: transparent;
    color: #2f2f2f;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
  }

  .mobile_menu_nav {
    display: flex;
    flex-direction: column;
    gap: 26px;
  }

  .mobile_menu_nav a {
    font-size: 13px;
    line-height: 1.2;
    color: #121212;
    font-weight: 400;
  }

  .mobile_menu_nav a.active {
    color: #f24e1e;
  }

  .mobile_menu_cta {
    width: 100%;
    border: none;
    border-radius: 12px;
    background: #000;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 16px 20px;
    cursor: pointer;
  }
}
main {
  padding-top: 70px;
  padding-bottom: 30px;
}
.hero .bg-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero .bg-images .glow {
  position: absolute;
  bottom: 0px;
  max-width: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.coin {
  position: absolute;
  bottom: 120px;
  left: 35%;
  transform: translateX(-50%);
}
.coin_2 {
  position: absolute;
  top: 190px;
  left: 90px;
}
.phone {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.hero {
  background: url(../Frame\ 4.png) center/cover no-repeat;
  /* background:
  linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
  url(../images/hero_bg.jpg) center/cover no-repeat; */
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: calc(100vh - 70px);
  position: relative;
}
.hero .left_part,
.hero .formaa {
  z-index: 100;
}

.hero h1 {
  color: #fff;
  font-family: "Cera Pro";
  font-size: 88px;
  font-style: normal;
  font-weight: 700;
  line-height: 90%; /* 79.2px */
  letter-spacing: -0.88px;
}
.hero h2 {
  color: #fff;
  font-family: "Cera Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.24px;
}
.hero b {
  color: #fff;
  font-family: "Cera Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 36px */
  letter-spacing: -0.24px;
}
.left_part {
  max-width: 667px;
  width: 100%;
}
.formaa {
  display: flex;
  max-width: 433px;
  width: 100%;
  padding: 24px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.33);
  background: #fff;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.25);
}
.formaa input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #c1c1c1;
  background: #fff;
  padding: 9px 20px;
}
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
form div {
  display: flex;
  gap: 20px;
}
form div svg {
  min-width: 20px;
  min-height: 20px;
}
form div p {
  color: #7d7d7d;
  font-family: "Cera Pro";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 18px */
  text-align: left;
}
.formaa input:focus {
  border-radius: 12px;
  border: 1px solid #1aa421;
  background: #fff;
  backdrop-filter: blur(11px);
}
.formaa button {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #ee4618;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 16px 20px;
  cursor: pointer;
}
.formaa.mob {
  display: none;
}
@media screen and (max-width: 768px) {
  .hero {
    width: 100%;
    background: url(../Frame\ 142.png) top/cover no-repeat;
    flex-direction: column;
    padding: 40px 0px;
    gap: 40px;
    height: fit-content;
    min-height: unset;
  }
  .hero .left_part {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
  }
  .hero h1 {
    font-size: 48px;
    line-height: 52px;
    letter-spacing: -0.48px;
  }
  .hero h2,
  .hero b {
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.16px;
  }
  .formaa {
    max-width: 100%;
  }
  .pc {
    display: none;
  }
  .formaa.mob {
    display: flex;
    margin-top: -20px;
    z-index: 100;
  }
}
.info .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 20px;
}
.info .container h2 {
  color: #000;
  font-family: "Cera Pro";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 52px */
  letter-spacing: -0.8px;
  max-width: 780px;
  width: 100%;
}
.info .container p {
  color: #000;
  font-family: "Cera Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 31.2px */
  letter-spacing: -0.48px;
  max-width: 780px;
  width: 100%;
}
.info .container .block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid #ee4618;
  align-items: center;
  text-align: center;
  padding-bottom: 20px;
}
.info .container .block span {
  color: #ee4618;
  text-align: center;
  font-family: "Cera Pro";
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 57.2px */
  letter-spacing: -0.52px;
}
.info .container .block p {
  color: #000;
  text-align: center;
  font-family: "Cera Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.16px;
}
@media screen and (max-width: 768px) {
  .info .container {
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
  }
  .info .container h2 {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.28px;
  }
  .info .container p {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.16px;
  }
  .blocks {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex-grow: 1;
    width: 100%;
  }
  .info .container .block {
    width: 100%;
    flex-grow: 1;
  }
}

.calculator {
  padding: 20px 20px 80px;
}

.calculator_card {
  max-width: 1320px;
  margin: 0 auto;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #030303;
  box-shadow: 0 20px 90px rgba(0, 0, 0, 0.75);
  padding: 70px 80px 60px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.calculator_card::before {
  content: "";
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 420px;
  background: radial-gradient(
    circle at bottom center,
    rgba(238, 70, 24, 0.7),
    rgba(238, 70, 24, 0) 52%
  );
  pointer-events: none;
}

.calc_eyebrow {
  color: #cbcbcb;
  font-family: "Cera Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 15.4px */
  letter-spacing: -0.14px;
  text-transform: uppercase;
}
.calculator_card h3 {
  color: #fff;
  font-family: "Cera Pro";
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 46.2px */
  letter-spacing: -0.42px;
}

.calc_dot {
  color: #ff4d17;
  font-size: 34px;
  margin-right: 12px;
  vertical-align: middle;
}

.calc_grid {
  margin-top: 56px;
  display: flex;

  gap: 44px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.calc_result_panel {
  border: 4px solid #ff4d17;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
  padding: 48px 24px;
  min-height: 380px;
  background: linear-gradient(
    180deg,
    rgba(255, 92, 35, 0.02) 0%,
    rgba(255, 92, 35, 0.12) 100%
  );
}

.calc_result_value {
  color: #ee4618;
  text-align: center;
  text-shadow: 0 0 22px #ee4618;
  font-family: "Cera Pro";
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 57.2px */
  letter-spacing: -0.52px;
}

.calc_result_subtitle {
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  font-size: 38px;
  line-height: 1.25;
}

.calc_controls {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  width: 100%;
}

.calc_controls label {
  color: #cbcbcb;
  font-family: "Cera Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 17.6px */
  letter-spacing: -0.16px;
}

.calc_controls label b {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}

.calc_input_wrap {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 22px;
  min-height: 104px;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(10, 10, 10, 0.7);
}

.calc_input_wrap input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: "Cera Pro";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 35.2px */
  letter-spacing: -0.32px;
}

.calc_input_wrap span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 62px;
  font-weight: 700;
}

#calc-period {
  width: 100%;
  appearance: none;
  height: 12px;
  background: linear-gradient(
    to right,
    #ff4d17 var(--range-progress, 50%),
    rgba(255, 255, 255, 0.82) var(--range-progress, 50%)
  );
  border-radius: 999px;
  outline: none;
  margin-top: 20px;
}

#calc-period::-webkit-slider-thumb {
  appearance: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ff4d17;
  box-shadow: 0 0 20px rgba(255, 77, 23, 0.8);
  cursor: pointer;
  border: none;
}

#calc-period::-moz-range-thumb {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ff4d17;
  box-shadow: 0 0 20px rgba(255, 77, 23, 0.8);
  cursor: pointer;
  border: none;
}

@media screen and (max-width: 1200px) {
  .calculator_card {
    padding: 46px 36px 36px;
  }

  .calc_eyebrow {
    font-size: 14px;
  }

  .calculator_card h3 {
    font-size: 54px;
  }

  .calc_grid {
    flex-direction: column-reverse;
  }

  .calc_result_panel {
    min-height: 240px;
    gap: 14px;
    padding: 30px 20px;
  }

  .calc_result_value {
    font-size: 58px;
  }

  .calc_result_subtitle {
    font-size: 28px;
  }

  .calc_controls label {
    font-size: 28px;
  }

  .calc_input_wrap {
    min-height: 84px;
  }

  .calc_input_wrap input,
  .calc_input_wrap span {
    font-size: 46px;
  }
}

@media screen and (max-width: 768px) {
  .calculator {
    padding: 16px 12px 44px;
  }

  .calculator_card {
    border-radius: 24px;
    padding: 26px 16px 20px;
  }

  .calc_eyebrow {
    font-size: 10px;
  }

  .calculator_card h3 {
    font-size: 34px;
    margin-top: 10px;
  }

  .calc_dot {
    font-size: 18px;
    margin-right: 8px;
  }

  .calc_grid {
    margin-top: 24px;
    gap: 18px;
  }

  .calc_result_panel {
    min-height: 170px;
    border-width: 2px;
    border-radius: 18px;
  }

  .calc_result_value {
    font-size: 44px;
  }

  .calc_result_subtitle {
    font-size: 22px;
  }

  .calc_controls {
    gap: 14px;
  }

  .calc_controls label {
    font-size: 22px;
  }

  .calc_input_wrap {
    min-height: 64px;
    border-radius: 14px;
    padding: 10px 14px;
  }

  .calc_input_wrap input,
  .calc_input_wrap span {
    font-size: 32px;
  }

  #calc-period {
    height: 8px;
    margin-top: 6px;
  }

  #calc-period::-webkit-slider-thumb,
  #calc-period::-moz-range-thumb {
    width: 24px;
    height: 24px;
  }
}

.huita_coins {
  padding: 72px 20px 84px;
}

.huita_coins .container {
  max-width: 1360px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 80px;
}

.huita_coins .container p {
  color: #a7a1a0;
  text-align: center;
  font-family: "Cera Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.huita_coins .container h2 {
  color: #000;
  text-align: center;
  font-family: "Cera Pro";
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 46.2px */
  letter-spacing: -0.42px;
}

.cards {
  max-width: 1360px;
  margin: 106px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  gap: 26px 28px;
  align-items: stretch;
}

.feature_card {
  background: #e6e6e6;
  border-radius: 30px;
  padding: 28px 24px 30px;
  min-height: 216px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.feature_icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.feature_card h3 {
  color: #000;
  font-family: "Cera Pro";
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 23.1px */
  margin-bottom: 30px;
}

.feature_card p {
  color: #000;
  font-family: "Cera Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
}

.feature_card_center {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  justify-content: flex-end;
  align-items: center;
  min-height: 444px;
  padding: 0;
  overflow: visible;
  position: relative;
  background: #d9d9d9;
}

.coins_image {
  width: min(600px, 100%);
  position: absolute;
  /* top: -132px; */
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.feature_card_center button {
  width: 100%;
  border: none;
  background: #f64814;
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  padding: 24px 16px;
  border-radius: 0 0 30px 30px;
  cursor: pointer;
  z-index: 2;
}

@media screen and (max-width: 1200px) {
  .huita_coins .container p {
    font-size: 16px;
  }

  .huita_coins .container h2 {
    font-size: 42px;
  }

  .feature_card h3 {
    font-size: 34px;
  }
}

@media screen and (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature_card_center {
    order: 99;
    grid-column: auto;
    grid-row: auto;
    min-height: 350px;
    margin-top: 116px;
  }

  .coins_image {
    height: 450px;
  }
}

@media screen and (max-width: 768px) {
  .huita_coins {
    padding: 42px 12px 48px;
  }

  .huita_coins .container h2 {
    font-size: 30px;
  }

  .feature_card {
    min-height: 186px;
    border-radius: 20px;
    padding: 20px 16px;
  }

  .feature_card h3 {
    font-size: 28px;
    margin-top: 12px;
  }

  .feature_card p {
    font-size: 16px;
    margin-top: 12px;
  }

  .feature_card_center {
    min-height: 300px;
  }

  .feature_card_center button {
    font-size: 24px;
    padding: 18px 14px;
    border-radius: 0 0 20px 20px;
  }
}

.two_cards {
  padding: 24px 20px 84px;
}

.two_cards .container {
  max-width: 1360px;
  margin: 0 auto;
  text-align: center;
}

.two_cards .container p {
  color: #a7a1a0;
  text-align: center;
  font-family: "Cera Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
.two_cards .container h2 {
  color: #000;
  text-align: center;
  font-family: "Cera Pro";
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 46.2px */
  letter-spacing: -0.42px;
}

.two_cards_grid {
  max-width: 1360px;
  margin: 98px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.compare_card {
  border-radius: 30px;
  padding: 30px 24px 26px;
}

.compare_card_bad {
  background: #e3c3c6;
}

.compare_card_good {
  background: #bfdda4;
}

.compare_card h3 {
  font-family: "Cera Pro";
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 23.1px */
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.compare_card_bad h3 {
  color: #946c6c;
}

.compare_card_good h3 {
  color: #6b915a;
}

.compare_icon {
  line-height: 0;
  display: inline-flex;
}

.compare_card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.compare_card li {
  color: #000;
  font-family: "Cera Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  display: flex;
  align-items: center;
}

.compare_card li span {
  min-width: 36px;
  font-size: 32px;
  line-height: 1;
}

.compare_card_bad li span {
  color: #8c6667;
}

.compare_card_good li span {
  color: #6b915a;
}

@media screen and (max-width: 1200px) {
  .compare_card h3 {
    font-size: 28px;
  }

  .compare_card li {
    font-size: 24px;
  }

  .compare_card li span {
    font-size: 25px;
    min-width: 28px;
  }
}

@media screen and (max-width: 768px) {
  .two_cards {
    padding: 24px 12px 48px;
  }

  .two_cards_grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 26px;
  }

  .compare_card {
    border-radius: 20px;
    padding: 18px 14px;
  }

  .compare_card h3 {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .compare_card li {
    font-size: 17px;
    gap: 10px;
  }

  .compare_card li span {
    font-size: 18px;
    min-width: 20px;
  }
}

.generate_section {
  padding: 8px 0 84px;
}

.generate_grid {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 22px;
  align-items: stretch;
}

.generate_text_block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 380px;
}

.generate_eyebrow {
  color: #a7a1a0;
  font-family: "Cera Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.14px;
  text-transform: uppercase;
  position: relative;
  padding-left: 14px;
  margin-bottom: 18px;
}

.generate_eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  background: #ee4618;
  transform: translateY(-50%) rotate(45deg);
  border-radius: 1px;
}

.generate_text_block h2 {
  color: #000;
  font-family: "Cera Pro";
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.42px;
  margin-bottom: 20px;
}

.generate_lead {
  color: #000;
  font-family: "Cera Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.24px;
  margin-bottom: 14px;
}

.generate_desc {
  color: #000;
  font-family: "Cera Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.24px;
}

.generate_image_card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #f3f3f3;
  min-height: 380px;
}

.generate_image_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 1200px) {
  .generate_section {
    padding: 8px 20px 64px;
  }

  .generate_text_block h2 {
    font-size: 34px;
  }

  .generate_lead,
  .generate_desc {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .generate_section {
    padding: 8px 12px 48px;
  }

  .generate_grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .generate_text_block {
    display: contents;
  }

  .generate_grid > .generate_text_block:first-of-type .generate_eyebrow {
    order: 1;
    margin-bottom: 12px;
  }

  .generate_grid > .generate_text_block:first-of-type h2 {
    order: 2;
  }

  .generate_grid > .generate_image_card:first-of-type {
    order: 3;
  }

  .generate_grid > .generate_text_block:first-of-type .generate_lead {
    order: 4;
  }

  .generate_grid > .generate_text_block:first-of-type .generate_desc {
    order: 5;
  }

  .generate_grid > .generate_text_block:last-of-type .generate_eyebrow {
    order: 6;
    margin-top: 8px;
    margin-bottom: 12px;
  }

  .generate_grid > .generate_text_block:last-of-type h2 {
    order: 7;
  }

  .generate_grid > .generate_image_card:last-of-type {
    order: 8;
  }

  .generate_grid > .generate_text_block:last-of-type .generate_lead {
    order: 9;
  }

  .generate_grid > .generate_text_block:last-of-type .generate_desc {
    order: 10;
  }

  .generate_text_block h2 {
    font-size: 30px;
    margin-bottom: 12px;
  }

  .generate_lead,
  .generate_desc {
    font-size: 17px;
    line-height: 145%;
    letter-spacing: -0.17px;
  }

  .generate_image_card {
    border-radius: 14px;
    aspect-ratio: 4 / 3;
    min-height: auto;
  }
}

.reviews_section {
  padding: 74px 20px 84px;
}

.reviews_section .container {
  max-width: 1360px;
  margin: 0 auto;
}

.reviews_eyebrow {
  color: #a7a1a0;
  font-family: "Cera Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.reviews_section h2 {
  color: #000;
  font-family: "Cera Pro";
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.42px;
  margin-bottom: 50px;
}

.reviews_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  gap: 30px;
}

.review_card {
  border-radius: 32px;
  border: 1px solid #e0e3ea;
  padding: 30px 30px 30px;
  display: flex;
  flex-direction: column;
  min-height: 370px;
}

.review_stars {
  line-height: 0;
  margin-bottom: 26px;
}

.review_text {
  color: #a7a1a0;
  font-family: "Cera Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  flex: 1;
}

.review_footer {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.review_footer img {
  width: 82px;
  height: 82px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
}

.review_meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review_name {
  color: #000;
  font-family: "Cera Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.review_amount {
  color: #fff;
  font-family: "Cera Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 10px;
  background: #f64814;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 14px 16px;
}

@media screen and (max-width: 1200px) {
  .reviews_grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 768px) {
  .reviews_section {
    padding: 42px 12px 48px;
  }

  .reviews_eyebrow {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .reviews_section h2 {
    font-size: 30px;
    line-height: 110%;
    letter-spacing: -0.3px;
    margin-bottom: 22px;
  }

  .reviews_grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .review_card {
    border-radius: 20px;
    padding: 20px 14px;
    min-height: auto;
  }

  .review_stars {
    margin-bottom: 14px;
  }

  .review_text {
    font-size: 17px;
    line-height: 145%;
  }

  .review_footer {
    margin-top: 18px;
    gap: 12px;
  }

  .review_footer img {
    width: 56px;
    height: 56px;
  }

  .review_name {
    font-size: 14px;
  }

  .review_amount {
    font-size: 13px;
    padding: 12px 14px;
  }
}

.ticker_section {
  padding: 0 20px 84px;
  background: #fff;
}

.ticker_panel {
  max-width: 1410px;
  margin: 0 auto;
  border-radius: 44px;
  padding: 80px 70px;
  min-height: 570px;
  background:
    radial-gradient(
      62% 68% at 50% 98%,
      rgba(238, 70, 24, 0.82) 0%,
      rgba(238, 70, 24, 0) 100%
    ),
    #030303;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  box-shadow: 0 8px 44px rgba(0, 0, 0, 0.45);
}

.ticker_side {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ticker_side_right {
  justify-self: end;
}

.ticker_item {
  width: 100%;
  max-width: 300px;
  min-height: 67px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
}

.ticker_coin {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ticker_info {
  min-width: 86px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ticker_symbol {
  color: #fff;
  font-family: "Cera Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  text-transform: uppercase;
}

.ticker_name {
  color: rgba(255, 255, 255, 0.4);
  font-family: "Cera Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.ticker_profit {
  margin-left: auto;
  color: #75c22b;
  text-align: right;
  font-family: "Cera Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}

.ticker_center_logo {
  width: min(273px, 100%);
  line-height: 0;
}

.ticker_center_logo svg {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 1200px) {
  .ticker_panel {
    padding: 54px 28px;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
  }

  .ticker_item {
    max-width: 290px;
  }

  .ticker_profit {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .ticker_section {
    padding: 0 12px 48px;
  }

  .ticker_panel {
    border-radius: 24px;
    min-height: auto;
    padding: 26px 14px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .ticker_side_right {
    display: none;
  }

  .ticker_side_left {
    width: 100%;
    order: 1;
    gap: 8px;
  }

  .ticker_item {
    max-width: 100%;
    min-height: 58px;
    padding: 10px 10px;
    gap: 10px;
  }

  .ticker_coin {
    width: 30px;
    height: 30px;
  }

  .ticker_coin svg {
    width: 30px;
    height: 30px;
  }

  .ticker_symbol {
    font-size: 16px;
  }

  .ticker_name {
    font-size: 13px;
  }

  .ticker_profit {
    font-size: 16px;
    line-height: 1;
  }

  .ticker_center_logo {
    order: 2;
    width: min(212px, 80%);
    margin: 2px auto 0;
  }
}

.faq_section {
  padding: 0 20px 84px;
}

.faq_section .container {
  max-width: 1360px;
  margin: 0 auto;
}

.faq_eyebrow {
  color: #a7a1a0;
  font-family: "Cera Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.faq_section h2 {
  color: #000;
  font-family: "Cera Pro";
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.42px;
  margin-bottom: 50px;
}

.faq_list {
  border-top: 1px solid rgba(255, 255, 255, 0.85);
}

.faq_item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
}

.faq_trigger {
  width: 100%;
  border: none;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  display: grid;
  grid-template-columns: 72px 1fr 30px;
  align-items: center;
  gap: 10px;
  min-height: 92px;
  padding: 20px 20px;
}

.faq_index {
  color: #a7a1a0;
  font-family: "Cera Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.faq_question {
  color: #000;
  font-family: "Cera Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.faq_icon {
  line-height: 0;
  justify-self: end;
  transition: transform 0.2s ease;
}

.faq_item.is-open .faq_icon {
  transform: rotate(180deg);
}

.faq_content {
  padding: 0 20px 30px 92px;
}

.faq_content p {
  color: #a7a1a0;
  font-family: "Cera Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 1100px;
}

@media screen and (max-width: 768px) {
  .faq_section {
    padding: 0 12px 48px;
  }

  .faq_eyebrow {
    font-size: 11px;
  }

  .faq_section h2 {
    font-size: 30px;
    letter-spacing: -0.3px;
    margin-bottom: 24px;
  }

  .faq_trigger {
    grid-template-columns: 44px 1fr 26px;
    min-height: 74px;
    padding: 14px 8px;
  }

  .faq_index,
  .faq_question {
    font-size: 16px;
  }

  .faq_icon svg {
    width: 24px;
    height: 24px;
  }

  .faq_content {
    padding: 0 8px 18px 52px;
  }

  .faq_content p {
    font-size: 16px;
    line-height: 1.45;
  }
}

.site_footer {
  position: relative;
  overflow: hidden;
  background:
    url(../pc_footer_bg.png) center top / cover no-repeat;
  padding: 42px 20px 24px;
}

.footer_inner {
  max-width: 1360px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer_coin {
  position: absolute;
  z-index: 1;
  width: 140px;
  height: auto;
}

.footer_coin_left {
  left: 7%;
  top: 210px;
}

.footer_coin_right {
  right: 9%;
  top: 360px;
}

.footer_formaa {
  max-width: 786px;
  margin: 0 auto;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: #ebebeb;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.42);
  padding: 26px 32px;
}

.footer_formaa form {
  gap: 12px;
}

.footer_formaa h3 {
  color: #111;
  max-width: 720px;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: -0.42px;
}

.footer_form_row {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.footer_formaa input {
  min-height: 56px;
  font-size: 16px;
  font-weight: 500;
}

.footer_formaa button {
  min-height: 60px;
  font-size: 21px;
  font-weight: 700;
}

.footer_formaa form > div:last-child {
  width: 100%;
  margin-top: 6px;
}

.footer_bottom {
  margin-top: 28px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 18px;
}

.footer_brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer_brand img {
  filter: brightness(0) invert(1);
}

.footer_links {
  display: flex;
  align-items: center;
  gap: 58px;
}

.footer_links a {
  color: #fff;
  font-family: "Cera Pro";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.footer_copyright {
  margin-top: 16px;
  color: #fff;
  text-align: center;
  font-family: "Cera Pro";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

@media screen and (max-width: 1024px) {
  .footer_coin {
    display: none;
  }

  .footer_formaa {
    max-width: 100%;
  }

  .footer_formaa h3 {
    font-size: 36px;
  }
}

@media screen and (max-width: 768px) {
  .site_footer {
    padding: 0px 0px 20px 0px;
    background: url(../mobile_footer_bg.png) center 10% / cover no-repeat;
    overflow: visible;
  }

  .footer_inner {
    padding: 0;
  }

  .footer_formaa {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    margin-bottom: -56px;
    margin-left: 0;
    margin-right: 0;
    border-radius: 20px;
    padding: 18px 12px;
    position: relative;
    z-index: 3;
    transform: translateY(-56px);
  }

  .footer_formaa h3 {
    font-size: 20px;
    letter-spacing: -0.2px;
  }

  .footer_form_row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer_formaa input {
    min-height: 44px;
    font-size: 14px;
  }

  .footer_formaa button {
    min-height: 50px;
    font-size: 15px;
    line-height: 1.2;
  }

  .footer_formaa form > div:last-child {
    gap: 8px;
  }

  .footer_formaa form > div:last-child p {
    font-size: 10px;
    line-height: 140%;
  }

  .footer_bottom {
    margin-top: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0 10px;
  }

  .footer_links {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .footer_links a {
    font-size: 12px;
    line-height: 24px;
  }

  .footer_copyright {
    margin-top: 10px;
    font-size: 10px;
    line-height: 14px;
    padding: 0 10px;
  }

  .footer_coin {
    display: block;
    width: 76px;
    opacity: 0.9;
  }

  .footer_coin_left {
    top: auto;
    left: 46%;
    bottom: 108px;
    transform: translateX(-50%);
  }

  .footer_coin_right {
    top: auto;
    right: -14px;
    bottom: 80px;
  }
}
