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

body .main__home-new {
  font-family: "Lato", sans-serif !important;
}

.main__home-new h1, 
.main__home-new h2, 
.main__home-new h3, 
.main__home-new h4, 
.main__home-new h5, 
.main__home-new h6 {
	font-family: "Lato", sans-serif !important;
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}

.hero__title {
  font-size: 64px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}

.hero__description {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
}

.hero__btn {
  display: inline-block;
  background-color: #F05A25;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 8px;
  width: fit-content;
  border: 1px solid #ffffff;
  transition: background-color 0.2s;
}

.hero__btn:hover {
  background-color: #c44e18;
}

/* ── CARDS SECTION ────────────────────────────────── */
.cards-section {
  padding: 80px 24px;
}

.cards-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.card {
  background: linear-gradient(180deg,rgba(29, 62, 139, 1) 0%, rgba(43, 91, 202, 1) 100%);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  color: #F4F4F4;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(35, 71, 197, 0.25);
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card__icon img {
  width: 26px;
}

.card__title {
  font-size: 20px;
  color: #F4F4F4;
  font-weight: 700;
  line-height: 1.3;
  min-height: 52px;
}

.card__text {
  font-size: 14px;
  color: #F4F4F4;
  line-height: 1.6;
  flex: 1;
}

.card__link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  margin-top: auto;
}

.card__link img {
  height: 16px;
  width: auto;
  margin-bottom: -2px;
  transition: transform 0.2s;
}

.card__link:hover img {
  transform: translateX(4px);
}

/* ── BENEFITS SECTION ────────────────────────────── */
.benefits {
  background-color: #ffffff;
  padding: 80px 24px;
}

.benefits__container {
  max-width: 1200px;
  margin: 0 auto;
}

.benefits__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  margin-bottom: 40px;
}

.benefits__title {
  font-size: 40px;
  font-weight: 700;
  color: #2A59C7;
  line-height: 1.2;
  max-width: 712px;
}

.benefits__subtitle {
  font-size: 22px;
  color: #2A59C7;
  font-weight: 500;
}

.benefits__divider {
  border: none;
  border-top: 3px solid #F05A25;
  width: 180px;
  margin: 0;
}

.benefits__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
}

.benefit {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.benefit__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background-color: #2A59C7;
}

.benefit__icon img {
  width: 48px;
}

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

.benefit__name {
  font-size: 24px;
  font-weight: 700;
  color: #2A59C7;
  line-height: 1.3;
}

.benefit__text p {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  color: #777777;
}

.benefit__text p > strong {
  font-weight: 700;
}

/* ── ABOUT SECTION ───────────────────────────────── */
.about {
  padding: 80px 24px;
  background: #f8f9fc;
}

.about__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__text {
  display: flex;
  flex-direction: column;
}

.about__eyebrow {
  font-size: 30px;
  font-weight: 600;
  color: #2A59C7;
  margin-bottom: 14px;
}

.about__title {
  position: relative;
  font-size: 40px;
  font-weight: 700;
  color: #2A59C7;
  line-height: 1.2;
  width: fit-content;
  margin-bottom: 34px;
}

.about__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -17px;
  border: none;
  border-top: 3px solid #F05A25;
  width: 100%;
  margin: 0;
}

.about__description {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.about__paragraph {
  font-size: 18px;
  line-height: 1.75;
  color: #777777;
  font-weight: 500;
}

.about__image-wrap {
  overflow: hidden;
  margin-bottom: -60px;
}

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

/* ── TESTIMONIALS SECTION ────────────────────────── */
.testimonials {
  padding: 80px 24px;
}

.testimonials__container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
  text-align: center;
}

.testimonials__title {
  font-size: 40px;
  font-weight: 700;
  color: #2A59C7;
}

.testimonials__divider {
  border: none;
  border-top: 3px solid #F05A25;
  width: 180px;
  margin: 0;
}

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

.testimonial {
  border: 1.5px solid #F05A25;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.testimonial__quote {
  font-size: 14px;
  line-height: 1.75;
  color: #777777;
  text-align: justify;
  flex: 1;
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial__author p {
  font-size: 14px;
  color: #4F4F4F;
  line-height: 1.4;
}

/* ── VIDEO SECTION ───────────────────────────────── */
.video-section {
  background-image: url('../images/video_background.png'), linear-gradient(180deg, rgba(29, 62, 139, 1) 0%, rgba(43, 91, 202, 1) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 24px;
}

.video-section__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.video-section__title {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.video-section__subtitle {
  font-size: 22px;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 24px;
}

.video-section__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background-color: #e8ecf8;
}

.video-section__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.video-section__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e8ecf8;
  cursor: pointer;
}

.video-section__play-btn {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background-color: rgba(200, 205, 220, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: transform 0.2s, background-color 0.2s;
}

.video-section__play-btn:hover {
  background-color: #2f55c7;
  color: #fff;
  transform: scale(1.1);
}

.video-section__play-btn svg {
  width: 32px;
  height: 32px;
}

/* ── TEAM SECTION ────────────────────────────────── */
.team {
  padding: 80px 24px;
}

.team__container {
  max-width: 1200px;
  margin: 0 auto;
}

.team__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 48px;
}

.team__title {
  font-size: 40px;
  font-weight: 700;
  color: #2A59C7;
}

.team__subtitle {
  font-size: 20px;
  color: #2A59C7;
  font-weight: 500;
}

.team__divider {
  border: none;
  border-top: 3px solid #F05A25;
  width: 180px;
  margin: 0;
}

.team__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.advisor-card {
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e8eaf0;
  background: #ffffff;
}

.advisor-card__photo-wrap {
  width: 200px;
  flex-shrink: 0;
  background-color: #e8ecf8;
  overflow: hidden;
}

.advisor-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.advisor-card__info {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.advisor-card__name {
  font-size: 20px;
  font-weight: 700;
  color: #2A59C7;
}

.advisor-card__role {
  font-size: 16px;
  color: #777777;
  margin-bottom: 8px;
}

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

.advisor-card__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #777777;
}

.advisor-card__contact-item a {
  color: #777777;
  text-decoration: none;
}

.advisor-card__contact-item a:hover {
  color: #2A59C7;
}

.advisor-card__contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #2A59C7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.advisor-card__contact-icon svg {
  width: 18px;
  height: 18px;
}

/* ── CALCULATOR SECTION ──────────────────────────── */
.calculator {
  padding: 80px 24px;
  background: #f8f9fc;
}

.calculator__container {
  max-width: 1300px;
  margin: 0 auto;
}

.calculator__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.calculator__title {
  font-size: 40px;
  font-weight: 700;
  color: #2A59C7;
}

.calculator__divider {
  border: none;
  border-top: 3px solid #F05A25;
  width: 180px;
  margin: 0;
}

.calculator__form {
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-field__label {
  font-size: 18px;
  font-weight: 700;
  color: #777777;
  text-align: center;
}

.calc-field__select-wrap {
  position: relative;
}

.calc-field__select-wrap .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar {
  width: 8px;
}

.calculator .calc-field__select {
  width: 100%;
  height: 58px;
  appearance: none;
  -webkit-appearance: none;
  background-color: #eeeff3;
  border: none;
  border-radius: 50px;
  padding: 16px 48px 16px 24px;
  font-size: 16px;
  color: #2A59C7;
  cursor: pointer;
  outline: none;
}

.calculator .calc-field__select:focus {
  box-shadow: 0 0 0 2px #2A59C7;
}

/* select2 контейнер */
.calculator .select__container .select2-container {
  width: 100% !important;
}

.calculator .select__container .select2-selection--single {
  display: flex;
  align-items: center;
  height: 58px !important;
  background-color: #eeeff3;
  border: none;
  border-radius: 50px;
  padding: 16px 48px 16px 24px;
  outline: none;
  box-shadow: none;
}

.calculator .select__container .select2-selection__rendered {
  font-size: 18px;
  color: #2A59C7;
  font-weight: 600;
  font-family: "Lato", sans-serif;
  padding: 0;
  line-height: 1;
}

.calculator .select__container .select2-selection__placeholder {
  color: #aaaaaa;
}

.calculator .select__container .select2-selection__arrow {
  font-size: 28px;

}

.calculator .select__container .select2-container--default .select2-selection__arrow:before {
  color: #2A59C7;
}

/* dropdown */
.hn-select2-dropdown {
  border: none;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.calculator .hn-select2-dropdown .select2-results__option {
  font-size: 16px;
  color: #2A59C7;
  background-color: #ffffff;
  font-family: "Lato", sans-serif;
  padding: 12px 24px;
}

.calculator .hn-select2-dropdown .select2-results__option--highlighted {
  background-color: #2A59C7 !important;
  color: #ffffff !important;
}

.calculator .hn-select2-dropdown .select2-results__option[aria-selected="true"] {
  background-color: #2A59C7;
  color: #ffffff;
}

.calc-field__select-wrap .select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
   border-top-left-radius: 20px;
   border-top-right-radius: 20px;
}

.calc-field__select-wrap .select2-container--default.select2-container--open.select2-container--above .select2-selection--single {
   border-bottom-left-radius: 20px;
   border-bottom-right-radius: 20px;
}

.calc-field__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.calc-field__prefix {
  position: absolute;
  right: 24px;
  font-size: 18px;
  color: #2A59C7;
  font-weight: 600;
  pointer-events: none;
}

.calculator .calc-field__input {
  width: 100%;
  height: 58px;
  background-color: #eeeff3;
  border: none;
  border-radius: 50px;
  padding: 15px 24px;
  font-size: 18px;
  font-weight: 600;
  color: #2A59C7;
  outline: none;
  font-family: "Lato", sans-serif;
  -moz-appearance: textfield;
}

.calculator .calc-field__input::placeholder {
	color: #aaaaaa;	
}

.calculator .calc-field__input::-webkit-outer-spin-button,
.calculator .calc-field__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.calculator .calc-field__input:focus {
  box-shadow: 0 0 0 2px #2A59C7;
}

.calc-field__range-display {
  width: 100%;
  height: 58px;
  background-color: #eeeff3;
  border-radius: 50px;
  padding: 16px 24px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  color: #2A59C7;
  font-family: "Lato", sans-serif;
}

.calc-field__range-wrap .calc-field__slider {
  height: 9px;
  border-radius: 50px;
  background: #eeeff3;
  border: 1px solid #2A59C7;
  margin: 16px 4px 8px;
}

.calc-field__slider .ui-slider-range {
  background: #2A59C7;
  border-radius: 50px;
  border: none;
  transition: width 0.15s ease;
}

.calc-field__slider .ui-slider-handle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #2A59C7;
  top: -8px;
  cursor: pointer;
  outline: none;
  box-shadow: 0 2px 8px rgba(42, 89, 199, 0.3);
  transition: box-shadow 0.2s, left 0.15s ease;
}

.calc-field__slider .ui-slider-handle:hover,
.calc-field__slider .ui-slider-handle:focus {
  box-shadow: 0 0 0 8px rgba(42, 89, 199, 0.15);
}

.calc-field__range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #777777;
  margin-top: 4px;
  padding: 0 4px;
}

.calc-result {
  background: linear-gradient(180deg,rgba(29, 62, 139, 1) 0%, rgba(43, 91, 202, 1) 100%);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  margin-top: 8px;
  box-shadow: 0 8px 24px rgba(47, 85, 199, 0.3);
}

.calc-result__label {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.calc-result__value {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
}

.calc-disclaimer {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-disclaimer__bold {
  font-size: 16px;
  font-weight: 700;
  color: #2A59C7;
  line-height: 1.3;
}

.calc-disclaimer__text {
  font-size: 16px;
  color: #777777;
  line-height: 1.4;
  padding-left: 18px;
  position: relative;
}

/* ── REQUIREMENTS SECTION ────────────────────────── */
.requirements {
  padding: 80px 24px;
}

.requirements__container {
  max-width: 1200px;
  margin: 0 auto;
}

.requirements__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 48px;
}

.requirements__title {
  font-size: 40px;
  font-weight: 700;
  color: #2A59C7;
}

.requirements__divider {
  border: none;
  border-top: 3px solid #F05A25;
  width: 180px;
  margin: 0;
}

.requirements__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.req-card {
  background-color: #f8f9fc;
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  gap: 28px;
  align-items: center;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

.req-card__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  width: 100px;
  text-align: center;
}

.req-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background-color: #2A59C7;
}

.req-card__icon img {
  width: 44px;
}

.req-card__label {
  font-size: 16px;
  font-weight: 700;
  color: #2A59C7;
  line-height: 1.3;
}

.req-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.req-card__list li {
  font-size: 16px;
  color: #777777;
  line-height: 1.4;
  padding-left: 18px;
  position: relative;
}

.req-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #2A59C7;
}

/* ── FINANCING SECTION ───────────────────────────── */
.financing {
  padding: 80px 24px;
  background: #f8f9fc;
}

.financing__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: center;
}

.financing__text {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.financing__title {
  position: relative;
  font-size: 40px;
  font-weight: 700;
  color: #2A59C7;
  line-height: 1.2;
}

.financing__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -17px;
  border: none;
  border-top: 3px solid #F05A25;
  width: 40%;
  margin: 0;
}

.financing__intro p {
  font-size: 20px;
  font-weight: 500;
  color: #2A59C7;
}

.financing__intro p > strong {
  font-weight: 700;
}

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

.financing__item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.financing__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background-color: #2A59C7;
}

.financing__item-icon img {
  width: 44px;
}

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

.financing__item-label {
  font-size: 20px;
  font-weight: 700;
  color: #2A59C7;
  line-height: 1.3;
}

.financing__item-text p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: #777777;
}

.financing__item-text p > strong {
  font-weight: 700;
}

.financing__image-wrap {
  overflow: hidden;
  margin-bottom: -60px;
}

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

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1100px) {
  .cards-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero__title {
    font-size: 48px;
  }

  .hero__description {
    font-size: 17px;
  }

  .about__container,
  .financing__container {
    gap: 48px;
  }

  .benefits__grid {
    gap: 40px 48px;
  }

  .benefit__name {
    font-size: 21px;
  }

  .benefit__text p {
    font-size: 16px;
  }

  .about__eyebrow {
    font-size: 24px;
  }

  .about__title,
  .financing__title,
  .benefits__title,
  .testimonials__title,
  .team__title,
  .requirements__title,
  .calculator__title,
  .video-section__title {
    font-size: 32px;
  }

  .advisor-card__photo-wrap {
    width: 160px;
  }

  .advisor-card__contact-item {
    font-size: 14px;
  }

  .advisor-card__contact-item a {
    word-break: break-all;
  }

  .financing__item-label {
    font-size: 18px;
  }

  .testimonials__grid {
    gap: 16px;
  }

  .team__grid,
  .requirements__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 420px;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__description {
    font-size: 14px;
  }

  .benefits,
  .about,
  .financing,
  .requirements,
  .calculator,
  .testimonials,
  .team,
  .video-section {
    padding: 60px 20px;
  }

  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits__title {
    font-size: 26px;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .benefit__name {
    font-size: 20px;
  }

  .benefit__text p {
    font-size: 16px;
  }

  .testimonials__title,
  .team__title,
  .requirements__title,
  .calculator__title {
    font-size: 28px;
  }

  .team__subtitle br {
    display: none;
  }

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

  .advisor-card {
    flex-direction: column;
  }

  .advisor-card__photo-wrap {
    width: 100%;
    height: 220px;
  }

  .advisor-card__contact-item {
    font-size: 14px;
  }

  .advisor-card__contact-item a {
    word-break: break-all;
  }

  .req-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .req-card__left {
    flex-direction: row;
    width: auto;
    text-align: left;
  }

  .about__container,
  .financing__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .financing__title {
    font-size: 28px;
  }

  .financing__image-wrap {
    margin-bottom: 0;
  }

  .about__title {
    font-size: 28px;
  }

  .about__image-wrap {
    order: -1;
    margin-bottom: 0;
  }

  .video-section__title {
    font-size: 28px;
  }

  .video-section__subtitle {
    font-size: 18px;
  }

  .req-card__icon,
  .financing__item-icon,
  .benefit__icon {
    width: 56px;
    height: 56px;
  }

  .req-card__icon img,
  .financing__item-icon img,
  .benefit__icon img {
    width: 36px;
  }
  
  .req-card__list li {
    font-size: 14px;
  }

  .financing__intro p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 360px;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__description br {
    display: none;
  }

  .cards-container {
    grid-template-columns: 1fr;
  }

  .cards-section,
  .benefits,
  .about,
  .financing,
  .requirements,
  .calculator,
  .testimonials,
  .team,
  .video-section {
    padding: 40px 16px;
  }

  .benefits__subtitle {
    font-size: 18px;
  }

  .benefit__name {
    font-size: 18px;
  }

  .benefits__title,
  .testimonials__title,
  .team__title,
  .requirements__title,
  .calculator__title,
  .about__title,
  .financing__title,
  .video-section__title {
    font-size: 26px;
  }

  .testimonial {
    padding: 24px 20px;
  }

  .req-card {
    padding: 24px 20px;
  }

  .about__paragraph,
  .calc-field__label {
    font-size: 16px;
  }

  .video-section__subtitle {
    font-size: 16px;
  }

  .calc-result__value {
    font-size: 28px;
  }

  .about__eyebrow {
    font-size: 22px;
  }

  .financing__item-label,
  .team__subtitle {
    font-size: 18px;
  }

  .advisor-card__photo {
    object-position: 0 -58px;
  }

  .team__grid,
  .requirements__grid {
    grid-template-columns: 1fr;
  }
}
