.ovocie-hero {
  background: #9dc675;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.ovocie-hero__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: clamp(16px, 10.5vw, 150px);
  padding-right: clamp(16px, 16.7vw, 240px);
  padding-top: clamp(20px, 4vw, 40px);
  padding-bottom: clamp(36px, 6vw, 64px);
  position: relative;
}

.ovocie-hero__content {
  position: relative;
  z-index: 2;
}

.ovocie-hero__title {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  margin: 0 0 156px;
  color: var(--paprika-900);
  display: inline-block;
  position: relative;
}

.ovocie-hero__lead {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: clamp(22px, 3.4vw, 48px);
  line-height: 1.15;
  margin: 0;
  max-width: 100%;
  color: var(--paprika-900);
}

.ovocie-hero__art {
  position: absolute;
  top: -70px;
  left: 350px;
}

.ovocie-hero__art img {
  display: block;
  width: 280px;
  height: 320px;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .ovocie-hero__inner {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 24px;
    padding-right: 24px;
  }

  .ovocie-hero__title {
    margin: 0 0 96px;
  }

  .ovocie-hero__art {
    top: -60px;
    left: 300px;
  }

  .ovocie-hero__art img {
    width: 200px;
    height: auto;
  }
}
@media (max-width: 824px) {
  .ovocie-hero__art {
    top: -40px;
    left: 220px;
  }
}
.ovocie-info {
  margin-top: 86px;
  width: 100%;
}

.ovocie-info__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 48px;
  padding-left: 10%;
  padding-right: 10%;
}

.ovocie-info__art img {
  display: block;
  width: 330px;
  height: auto;
}

.ovocie-info__text {
  flex: 1 1 60%;
  font-family: Georgia, serif;
  font-size: 32px;
  line-height: 1.4;
  color: var(--paprika-900);
}

.ovocie-info__text p {
  margin: 0 0 24px;
}

@media (max-width: 1024px) {
  .ovocie-info__inner {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .ovocie-info__art {
    margin-bottom: 32px;
  }

  .ovocie-info__art img {
    width: 200px;
  }

  .ovocie-info__text {
    font-size: 26px;
  }
}
.credit {
  margin: 86px 0;
}

.credit__inner {
  padding-left: 10%;
  padding-right: 10%;
}

.credit__heading {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.1;
  color: var(--paprika-900);
  margin: 0 0 63px;
}

.credit__lead {
  font-family: Georgia, serif;
  font-size: 32px;
  line-height: 1.35;
  color: var(--paprika-900);
  max-width: 1000px;
  margin-bottom: 64px;
}

.credit__lead p {
  margin: 0 0 16px;
}
.credit__lead p:last-child {
  margin-bottom: 0;
}

.credit__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.credit-card {
  background: #cee3ba;
  padding: 28px 28px 24px;
  border-radius: 0 0 24px 24px;
  display: flex;
  flex-direction: column;
}

.credit-card.is-accent {
  background: var(--paprika-300);
}

.credit-card__price {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 52px;
  line-height: 1.1;
  color: var(--paprika-900);
  margin: 0 0 64px;
}

.credit-card__text {
  font-family: "Rubik", system-ui, sans-serif;
  font-size: 20px;
  line-height: 1.45;
  color: var(--paprika-900);
  margin: 0;
}

.credit-card__btn {
  margin-top: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  border-radius: 999px;
  padding: 0 24px;
  background: var(--paprika-900);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
    cursor: pointer;
    width: 100%;
}

@media (max-width: 960px) {
  .credit__lead {
    font-size: 26px;
  }
  .credit__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .credit-card__price {
    margin-bottom: 32px;
  }
  .credit-card__btn {
    margin-top: 32px;
  }
}
.bigcredit {
  background: var(--neutral-300);
  padding: 48px 0;
}

.bigcredit__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 10%;
  padding-right: 10%;
}

.bigcredit__title {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.1;
  color: var(--paprika-900);
  margin: 0 0 80px;
}

.bigcredit__lead {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.35;
  color: var(--paprika-900);
  margin: 0 0 160px;
}

.bigcredit__lead a {
  color: var(--paprika-900);
  text-decoration: underline;
}

.bigcredit__cta {
  display: flex;
  justify-content: center;
}

.bigcredit__btn {
  padding: 16px 28px;
  border-radius: 999px;
  background: var(--paprika-900);
  color: #fff;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  display: inline-block;
}

@media (min-width: 960px) {
  .bigcredit__btn {
    min-width: 440px;
  }
}
.how {
  padding: 64px 0 96px;
}

.how__title {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.1;
  color: var(--paprika-900);
  margin: 0 0 80px;
  padding-left: 24px;
}

.how__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 10%;
  padding-right: 10%;
  display: grid;
  gap: 28px;
}

.how-card {
  background: #cee3ba;
  color: var(--paprika-900);
  border-radius: 0 0 60px 60px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: start;
  gap: 28px;
  padding: 24px;
}

.how-card__left {
  font-family: Georgia, serif;
  font-size: 32px;
  line-height: 1.25;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 16px;
  align-items: start;
}

.how-card__num {
  font-family: Georgia, serif;
  font-size: 24px;
  line-height: 1.2;
  margin-top: 4px;
}

.how-card__right {
  font-family: "Rubik", system-ui, sans-serif;
  font-size: 24px;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .how-card {
    grid-template-columns: 1fr;
    border-radius: 0 0 40px 40px;
  }
  .how-card__right {
    font-size: 20px;
  }
  .how-card__left {
    font-size: 28px;
  }
}

.kredit {
  margin: 32px 0 48px;
}

.kredit__hint {
  text-align: center;
  font: 400 14px/1.35 "Rubik", system-ui, sans-serif;
  color: var(--baklazan-900);
  margin-bottom: 16px;
  opacity: 0.9;
}

.kredit__wrap {
  width: 100%;
  position: relative;
}

.kredit__track {
  position: relative;
  height: 50px;
  width: 100%;
  background: #84b852;
  border-radius: 999px;
  margin-top: 60px;
}

.kredit__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 40%;
  background: #6f9c45;
  border-radius: inherit;
  transition: width 0.12s ease;
}

.kredit__thumb {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2a402c;
  border: 0;
  box-shadow: 0 0 0 4px rgba(42, 64, 44, 0.15);
  cursor: grab;
}
.kredit__thumb:active {
  cursor: grabbing;
}

.kredit__bubble {
  position: absolute;
  left: 40%;
  top: 0;
  transform: translate(-50%, -140%);
  font-family: Georgia, serif;
  font-size: 32px;
  color: var(--baklazan-900);
  pointer-events: none;
  white-space: nowrap;
  z-index: 5;
}

.kredit__edge {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font: 400 14px/1 "Rubik", system-ui, sans-serif;
  padding: 0 10px;
  user-select: none;
}
.kredit__edge--min {
  left: 14px;
}
.kredit__edge--max {
  right: 14px;
}

.bio {
  padding: 64px 0 96px;
}
.bio__note {
  font: 400 18px/1.35 "Rubik", system-ui, sans-serif;
  color: var(--baklazan-900);
  margin: 0 0 46px;
  text-align: center;
}

.bio__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 10%;
  padding-right: 10%;
  text-align: center;
}
.bio__title {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.15;
  color: var(--baklazan-900);
  margin: 0 0 70px;
}
.bio__image {
  display: block;
  width: 100%;
  max-width: 472px;
  height: auto;
  border-radius: 16px;
  margin: 0 auto;
}
.bio__cta {
  display: inline-block;
  margin-top: 70px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--baklazan-900);
  color: #fff;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.faq {
  margin-bottom: 40px;
}
.faq__inner {
  max-width: 920px;
}

.faq__title {
  font-weight: 500;
  font-family: Georgia, serif;
  font-size: 32px;
  line-height: 1.25;
  color: var(--baklazan-900);
  margin: 0 0 68px;
  padding-left: 24px;
}

.faq__list {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.faq__item {
  border-bottom: 1px solid var(--ink);
  background: transparent;
  transition: background-color 0.35s ease;
}

.faq__item.is-open {
  background: var(--neutral-300);
}

.faq__question {
  width: 100%;
  min-height: 93px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  font: 400 24px/1.35 "Rubik", system-ui, sans-serif;
  color: var(--baklazan-900);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.faq__icon {
  width: 22px;
  height: 22px;
  position: relative;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: var(--baklazan-900);
  transform-origin: center;
  transition: transform 0.35s ease;
}
.faq__icon::before {
  transform: translateY(-50%) rotate(0deg);
}
.faq__icon::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq__item.is-open .faq__icon::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  padding: 0 24px;
  transition: max-height 0.65s ease, padding 0.65s ease;
}

.faq__item.is-open .faq__answer {
  padding: 16px 24px 24px;
}

.faq__answer p {
  margin: 0;
  font: 400 20px/1.5 "Rubik", system-ui, sans-serif;
  color: var(--baklazan-900);
}

.faq__item {
  border-bottom: 1px solid var(--ink);
  background: transparent;
}
.faq__item.is-open {
  background: var(--neutral-300);
}

.faq__question {
  width: 100%;
  min-height: 93px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  font: 400 24px/1.35 "Rubik", system-ui, sans-serif;
  color: var(--baklazan-900);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.faq__chev {
  width: 22px;
  height: 22px;
  transition: transform 0.22s ease;
}
.faq__item.is-open .faq__chev {
  transform: rotate(180deg);
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  padding: 0 24px;
  transition: max-height 0.28s ease, padding 0.28s ease;
}
.faq__item.is-open .faq__answer {
  padding: 16px 24px 24px;
}

.faq__answer p {
  margin: 0;
  font: 400 20px/1.5 "Rubik", system-ui, sans-serif;
  color: var(--baklazan-900);
}

.ovocie-hero__title,
.ovocie-hero__lead,
.ovocie-info__text,
.credit__heading,
.credit__lead,
.credit-card__price,
.credit-card__text,
.bigcredit__title,
.bigcredit__lead,
.how__title,
.how-card,
.how-card__left,
.how-card__right {
  color: var(--baklazan-900) !important;
}

.bigcredit__lead a {
  color: var(--baklazan-900) !important;
}

.credit-card__btn,
.bigcredit__btn,
.bio__cta {
  background: var(--baklazan-900) !important;
  color: #fff !important;
  transition: background-color 0.25s ease;
}

.credit-card__btn:hover,
.credit-card__btn:focus-visible,
.bigcredit__btn:hover,
.bigcredit__btn:focus-visible,
.bio__cta:hover,
.bio__cta:focus-visible {
  background: var(--baklazan-600) !important;
}

@media (min-width: 641px) and (max-width: 1024px) {
  .ovocie-hero__inner {
    padding: 24px 28px 57px;
    flex-direction: column;
    align-items: flex-start;
  }

  .ovocie-hero__title {
    font-size: 56px;
    margin: 0 0 72px;
    line-height: 1.08;
  }

  .ovocie-hero__art {
    position: absolute;
    top: -56px;
    left: 290px;
  }
  .ovocie-hero__art img {
    width: 220px;
    height: auto;
  }

  .ovocie-hero__lead {
    font-family: "Rubik", system-ui, sans-serif;
    font-size: 20px;
    line-height: 1.45;
    color: var(--paprika-900);
    max-width: 46ch;
  }
}

@media (max-width: 640px) {
  .ovocie-hero__inner {
    padding: 24px 57px 57px 17px;
    flex-direction: column;
    align-items: flex-start;
  }

  .ovocie-hero__title {
    font-size: 48px;
    line-height: 1.1;
    margin: 0 0 -8px;
  }

  .ovocie-hero__art {
    position: static;
    margin: 0 auto 24px;
  }
  .ovocie-hero__art img {
    width: 180px;
    height: auto;
    display: block;
  }

  .ovocie-hero__lead {
    font-family: "Rubik", system-ui, sans-serif;
    font-size: 18px;
    line-height: 1.45;
    margin: 0;
    max-width: 60ch;
  }
}
@media (max-width: 640px) {
  .ovocie-info {
    padding: 47px 17px;
  }
  .ovocie-info__inner {
    gap: 0;
  }

  .ovocie-info__text p {
    font-size: 18px;
    line-height: 1.45;
  }

  .ovocie-info__art img {
    display: block;
    margin: 0 auto 0px;
    max-width: 100%;
    height: auto;
  }
}
.credit-card.is-accent {
  position: relative;
}
.credit-card__badge {
  position: absolute;
  right: 28px;
  background: #cee3ba;
  color: var(--baklazan-900);
  font-size: 14px;
  line-height: 1;
  padding: 8px 10px;
  border-radius: 999px;
  white-space: nowrap;
  height: 57px;
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 640px) {
  .credit {
    margin: 0;
  }
  .credit__inner {
    padding-left: 7px;
    padding-right: 7px;
  }

  .credit__heading {
    font: 400 48px/1.1 Georgia, serif;
    margin: 0 0 32px;
  }

  .credit__lead {
    font: 400 18px/1.45 "Rubik", system-ui, sans-serif;
    margin: 0 0 82px;
  }

  .credit__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .credit-card {
    position: relative;
    padding: 19px;
    border-radius: 0 0 24px 24px;
  }

  .credit-card__badge {
    right: 19px;
  }

  .credit-card__price {
    font: 400 48px/1.1 Georgia, serif;
    margin: 0 0 42px;
    color: var(--paprika-900);
  }

  .credit-card__text {
    font: 400 16px/1.45 "Rubik", system-ui, sans-serif;
    margin: 0;
  }

  .credit-card__btn {
    margin-top: 80px;
    height: 57px;
    font: 400 16px/1 "Rubik", system-ui, sans-serif;
    padding: 0 24px;
    border-radius: 999px;
    background: var(--paprika-900);
    color: #fff;
    text-decoration: none;
      cursor: pointer;
      width: 100%;
  }
}

@media (max-width: 640px) {
  .bigcredit {
    padding-top: 48px;
    padding-bottom: 22px;
    margin-top: 82px;
  }
  .bigcredit__inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .bigcredit__title {
    font: 400 48px/1.1 Georgia, serif;
    margin: 0 0 32px;
  }

  .bigcredit__lead {
    font: 400 18px/1.45 Georgia, serif;
    margin: 0 0 48px;
  }

  .kredit__hint {
    font: 400 14px/1.4 "Rubik", system-ui, sans-serif;
    margin: 10px 0 12px;
    text-align: center;
  }

  .kredit__bubble {
    font-size: 26px;
  }

  .bigcredit__cta {
    display: flex;
    justify-content: center;
    margin-top: 18px;
  }
  .bigcredit__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 270px;
    height: 57px;
    font: 400 16px/1 "Rubik", system-ui, sans-serif;
    padding: 0 20px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .how {
    padding-left: 17px;
    padding-right: 17px;
  }

  .how__title {
    font-size: 32px;
    margin-bottom: 32px;
    padding-left: 0;
  }

  .how__inner {
    padding-left: 0;
    padding-right: 0;
    gap: 20px;
  }

  .how-card {
    display: block;
    padding: 20px;
    border-radius: 0 0 40px 40px;
  }

  .how-card__left {
    display: block;
    font-size: 26px;
    line-height: 1.25;
    margin: 0;
  }

  .how-card__num {
    display: block;
    font-size: 22px;
    line-height: 1.2;
    margin: 0 0 6px;
  }

  .how-card__left > div {
    font: 400 26px/1.25 Georgia, serif;
    margin: 0 0 20px;
  }

  .how-card__right {
    font: 400 16px/1.45 "Rubik", system-ui, sans-serif;
  }
}

@media (max-width: 640px) {
  .bio {
    padding: 0px 0 82px !important;
    margin-top: -10px;
  }

  .bio__inner {
    padding-left: 17px;
    padding-right: 17px;
  }

  .bio__title {
    font-size: 32px;
    margin-bottom: 32px;
    text-align: left;
  }

  .bio__image {
    margin: 0 auto 32px;
    max-width: 100%;
  }

  .bio__cta {
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 57px;
    padding: 0 16px;
    max-width: 217px;
    width: 100%;
    font: 400 16px/1.3 "Rubik", sans-serif;
    text-align: center;
    white-space: normal;
  }
}

@media (min-width: 641px) and (max-width: 940px) {
  .bio {
    padding: 64px 0 80px;
  }

  .bio__inner {
    padding-left: 32px;
    padding-right: 32px;
    text-align: center;
  }

  .bio__title {
    font-size: 38px;
    margin-bottom: 40px;
  }

  .bio__image {
    margin: 0 auto 40px;
    max-width: 420px;
  }

  .bio__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 57px;
    padding: 0 20px;
    max-width: 300px;
    width: 100%;
    font: 400 16px/1.3 "Rubik", sans-serif;
    text-align: center;
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .faq {
    margin-bottom: 120px;
    padding: 0 17px;
  }
  .faq__inner {
    padding-left: 17px;
    padding-right: 17px;
  }

  .faq__title {
    font-family: Georgia, serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.25;
    margin: 0 0 40px -17px;
    padding-left: 0;
    max-width: 205px;
  }

  .faq__list {
    margin: 0 -17px;
  }
  .faq__item {
    border-bottom-width: 1px;
  }

  .faq__question {
    min-height: 72px;
    padding: 0 17px;
    font: 400 16px/1.35 "Rubik", system-ui, sans-serif;
    gap: 12px;
  }

  .faq__chev {
    width: 18px;
    height: 18px;
  }

  .faq__answer {
    padding: 0 17px;
  }
  .faq__item.is-open .faq__answer {
    padding: 12px 17px 16px;
  }
  .faq__answer p,
  .faq__answer {
    font: 400 14px/1.5 "Rubik", system-ui, sans-serif;
  }
}
