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

:root {
  --color-black: #0b0b0b;
  --color-gold: #c38a3b;
  --color-gold-header: #e9b957;
  --color-gold-light: #ffe8a8;
  --color-gold-mid: #ffd97a;
  --color-gold-pale: #fff6d7;
  --color-text-muted: rgba(11, 11, 11, 0.7);
  --color-text-muted-light: #b7b7c1;
  --color-white: #ffffff;
  --color-footer-bar: #1f1f1f;
  --font: 'Geist', sans-serif;
  --page-width: 1440px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--color-white);
  color: var(--color-black);
  min-width: var(--page-width);
}

img {
  display: block;
  max-width: 100%;
}

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

.page {
  width: var(--page-width);
  margin: 0 auto;
  position: relative;
  background: var(--color-white);
}

/* Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  padding: 20px 80px;
  background: var(--color-gold-header);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header__nav {
  display: flex;
  gap: 40px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 16.8px;
}

.header__cta {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  background: var(--color-gold-light);
  border: 1px solid var(--color-gold-light);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-gold);
  line-height: 18px;
}

/* Hero */
.hero {
  position: relative;
  height: 900px;
  overflow: hidden;
}

.hero__left {
  position: absolute;
  top: 0;
  left: 0;
  width: 49%;
  height: 100%;
  background: var(--color-gold);
  z-index: 0;
}

.hero__pattern {
  position: absolute;
  inset: -36.11% 22.49% -104.27% -72.64%;
  display: flex;
  align-items: center;
  justify-content: center;
  container-type: size;
  pointer-events: none;
  z-index: 1;
}

.hero__pattern__inner {
  flex: none;
  width: hypot(50.0097cqw, 48.3183cqh);
  height: hypot(49.9903cqw, 51.6817cqh);
  transform: scaleX(-1) rotate(-130.97deg) scale(0.9);
}

.hero__pattern__inner img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
}

.hero__right {
  position: absolute;
  top: 0;
  right: 0;
  width: 51%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.hero__photo {
  position: absolute;
  bottom: 0;
  left: 0.39px;
  width: 100%;
  height: 109.3%;
  object-fit: cover;
}

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

.hero__gradient--left {
  background: linear-gradient(69deg, rgb(12, 6, 3) 0%, rgba(12, 6, 3, 0) 42%);
}

.hero__gradient--right {
  background: linear-gradient(216deg, rgb(12, 6, 3) 0%, rgba(12, 6, 3, 0) 42%);
}

.hero__features {
  position: absolute;
  bottom: 70px;
  left: 65px;
  width: 403px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 19px 10px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.hero__badge img {
  flex-shrink: 0;
  width: 23px;
  height: 24px;
}

.hero__feature img {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.hero__feature p {
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
  color: var(--color-white);
}

.hero__content {
  position: absolute;
  bottom: 70px;
  left: 80px;
  width: 490px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  z-index: 3;
}

.hero__title-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero__badge span {
  font-size: 18px;
  font-weight: 400;
  line-height: 21.6px;
  letter-spacing: -0.54px;
  color: var(--color-white);
}

.hero__title {
  font-size: 60px;
  font-weight: 300;
  line-height: 70px;
  letter-spacing: -1.5px;
  color: var(--color-white);
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 2px 0;
}

.hero__avatars {
  display: flex;
  align-items: center;
  padding: 4px 0;
}

.hero__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--color-white);
  background: var(--color-white);
  overflow: hidden;
  margin-right: -8px;
}

.hero__avatar:last-child {
  margin-right: 0;
}

.hero__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__avatar:nth-child(1) img {
  width: 46px;
  height: 46px;
  margin: -2px;
}

.hero__avatar:nth-child(2) img {
  width: 58px;
  height: 58px;
  margin: -3px -8px;
}

.hero__proof-text {
  flex: 1;
  font-size: 18px;
  font-weight: 300;
  line-height: 25px;
  color: var(--color-white);
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 12px 40px;
  background: var(--color-white);
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-black);
  line-height: 25px;
}

/* Features grid */
.features {
  padding: 100px 80px 150px;
  background: var(--color-white);
}

.features__grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.features__row {
  display: flex;
  gap: 15px;
}

.features__row--fixed .feature-card {
  min-height: 278px;
}

.feature-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
}

.feature-card--1 {
  background: var(--color-gold-pale);
}

.feature-card--2 {
  background: var(--color-gold-light);
}

.feature-card--3 {
  background: var(--color-gold-mid);
}

.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 10px 40px;
  border: 2px solid var(--color-gold);
  border-radius: 16px;
  height: 66px;
}

.feature-card__icon--dark {
  border-color: #a6722b;
}

.feature-card__icon--wide {
  padding-bottom: 9px;
  padding-top: 10px;
}

.feature-card__icon img {
  display: block;
  height: 46px;
  width: auto;
  max-width: none;
  object-fit: contain;
}

.feature-card__title {
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
  color: var(--color-black);
}

.feature-card__text {
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  color: var(--color-text-muted);
}

/* Fleet */
.fleet {
  padding: 0 80px 150px;
}

.fleet__header {
  margin-bottom: 60px;
}

.fleet__title {
  font-size: 46px;
  font-weight: 400;
  line-height: 56px;
  color: var(--color-black);
  margin-bottom: 15px;
}

.fleet__title-muted {
  color: var(--color-text-muted-light);
}

.fleet__subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: var(--color-text-muted);
}

.fleet__cards {
  display: flex;
  gap: 20px;
}

.fleet-card {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.fleet-card__badge {
  position: absolute;
  top: 29px;
  right: 30px;
  padding: 12px 20px;
  background: var(--color-black);
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
  color: var(--color-white);
  white-space: nowrap;
  z-index: 2;
}

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

.fleet-card__label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fleet-card__label span {
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
}

.fleet-card__desc {
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  color: var(--color-text-muted);
}

.fleet-card__label img {
  width: 25px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
}

.fleet-card__image {
  height: 183px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.fleet-card__image img {
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.fleet-card:nth-child(1) .fleet-card__image img {
  height: 130px;
  margin-bottom: 32px;
}

.fleet-card:nth-child(2) .fleet-card__image img {
  height: 183px;
  margin-top: -25%;
}

.fleet-card:nth-child(3) .fleet-card__image img {
  height: 183px;
  margin-top: -19%;
}

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

.fleet-card:nth-child(2),
.fleet-card:nth-child(3) {
  height: 577px;
}

.fleet-card__models li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.fleet-card__models img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
}

.team__badge img,
.management__badge img,
.bonus__badge img,
.connect__badge img,
.advantages__badge img {
  width: 23px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.team__badge img,
.management__badge img {
  width: 25px;
  height: 26px;
}

.management-card__head img {
  width: 35px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.header__logo img,
.footer__logo img {
  display: block;
  object-fit: contain;
}

.footer__logo img:first-child {
  width: 58px;
  height: 60px;
}

.footer__logo img:last-child {
  width: 149px;
  height: 28px;
}

/* Team */
.team {
  padding: 0 15px 150px;
}

.team__header {
  display: flex;
  align-items: flex-start;
  gap: 0;
  width: 1280px;
  margin: 0 auto 30px;
  padding-left: 65px;
}

.team__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 655px;
  padding: 20px 0;
}

.team__badge span {
  font-size: 18px;
  font-weight: 400;
  line-height: 21.6px;
  letter-spacing: -0.54px;
}

.team__title {
  width: 507px;
  font-size: 46px;
  font-weight: 300;
  line-height: 50.4px;
  letter-spacing: -1.26px;
}

.team__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.team__grid > .team-card:nth-child(1),
.team__grid > .team-card:nth-child(2) {
  display: inline-flex;
}

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

.team-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 515px;
  padding: 30px;
  background: #878787;
  overflow: hidden;
}

.team-card:nth-child(3),
.team-card:nth-child(4) {
  min-height: 410px;
}

.team-card__bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 702px;
  max-width: none;
  height: 565px;
  object-fit: cover;
  z-index: 0;
}

.team-card:nth-child(2) .team-card__bg {
  width: 695px;
  height: 560px;
}

.team-card:nth-child(3) .team-card__bg {
  width: 695px;
  height: 560px;
  bottom: -61px;
}

.team-card:nth-child(4) .team-card__bg {
  width: 695px;
  height: 560px;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, calc(-50% - 11px));
}

.team-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.team-card__title,
.team-card__text {
  position: relative;
  z-index: 2;
}

.team-card__title {
  font-size: 40px;
  font-weight: 300;
  line-height: 50px;
  letter-spacing: -0.9px;
  color: var(--color-white);
}

.team-card__text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.team-card__text p {
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  color: var(--color-white);
}

.team-card:nth-child(2) {
  gap: 160px;
  justify-content: flex-start;
}

.team-card:nth-child(3) {
  gap: 160px;
  justify-content: flex-start;
}

/* Management */
.management {
  padding: 0 80px 150px;
}

.management__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
}

.management__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
}

.management__badge span {
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  color: var(--color-black);
}

.management__title {
  font-size: 46px;
  font-weight: 300;
  line-height: 56px;
  letter-spacing: -0.9px;
  text-align: center;
}

.management__columns {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.management-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.management-card__head {
  display: flex;
  align-items: center;
  gap: 15px;
}

.management-card__head h3 {
  font-size: 40px;
  font-weight: 300;
  line-height: 50px;
  letter-spacing: -1.8px;
}

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

.management-card__list li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 3px;
  border-radius: 3px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px 15px;
}

.check--dark {
  background-color: var(--color-black);
  background-image: url('../assets/images/icon-checkmark.svg');
}

.check--gold {
  background-color: var(--color-gold);
  background-image: url('../assets/images/icon-checkmark.svg');
}

.management__accounting {
  display: flex;
  gap: 60px;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: var(--color-white);
}

.management__accounting-title {
  flex: 1;
  font-size: 40px;
  font-weight: 300;
  line-height: 50px;
  letter-spacing: -1.8px;
  color: var(--color-gold);
}

.management__accounting-list {
  flex: 1;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.management__accounting-list li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

/* Bonus */
.bonus {
  position: relative;
  height: 466px;
  overflow: hidden;
}

.bonus__bg {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(calc(-50% - 79px));
  width: 1626px;
  height: 690px;
  object-fit: cover;
}

.bonus__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(70deg, rgba(0, 0, 0, 0.85) 6%, rgba(0, 0, 0, 0.65) 41%, rgba(0, 0, 0, 0) 100%);
}

.bonus__content {
  position: relative;
  z-index: 1;
  padding: 100px 80px;
  width: 742px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bonus__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.bonus__badge span {
  font-size: 18px;
  font-weight: 400;
  line-height: 21.6px;
  letter-spacing: -0.54px;
  color: var(--color-white);
}

.bonus__title {
  font-size: 60px;
  font-weight: 300;
  line-height: 66px;
  letter-spacing: -2.1px;
  color: var(--color-white);
  margin-bottom: 8px;
}

.bonus__text {
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  color: var(--color-white);
}

/* Connect */
.connect {
  position: relative;
  height: 594px;
  margin-top: 150px;
  margin-bottom: 150px;
  background: var(--color-white);
  overflow: hidden;
}

.connect__content {
  position: absolute;
  left: 80px;
  top: 0;
  width: 624px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.connect__header {
  display: flex;
  flex-direction: column;
  height: 175px;
}

.connect__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
}

.connect__badge span {
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  color: var(--color-black);
}

.connect__title {
  font-size: 46px;
  font-weight: 300;
  line-height: 56px;
  letter-spacing: -0.9px;
  color: var(--color-black);
}

.connect__spacer--step {
  width: 472px;
  height: 30px;
  flex-shrink: 0;
}

.connect__spacer--nav {
  width: 112px;
  height: 56px;
  flex-shrink: 0;
}

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

.connect__info h3 {
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
  color: var(--color-black);
}

.connect__info p {
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  color: var(--color-text-muted);
}

.connect__photo {
  position: absolute;
  left: 923px;
  top: 0;
  width: 517px;
  height: 592px;
  background: #737373;
  overflow: hidden;
}

.connect__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

/* Advantages */
.advantages {
  position: relative;
  padding: 60px 80px 80px;
  min-height: 1282px;
  overflow: hidden;
}

.advantages__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 1591px;
  height: 1281px;
  object-fit: cover;
  z-index: 0;
}

.advantages__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.advantages__header,
.advantages__grid {
  position: relative;
  z-index: 2;
}

.advantages__header {
  width: 789px;
  margin-bottom: 313px;
}

.advantages__grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-bottom: 60px;
}

.advantages__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
}

.advantages__badge span {
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  color: var(--color-white);
}

.advantages__title {
  font-size: 60px;
  font-weight: 300;
  line-height: 70px;
  letter-spacing: -0.9px;
  color: var(--color-white);
}

.advantages__row {
  display: flex;
  gap: 15px;
}

.advantage-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
  background: var(--color-white);
}

.advantage-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 10px 40px;
  border: 1px solid var(--color-text-muted);
  border-radius: 16px;
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
}

.advantage-card h3 {
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
}

.advantage-card p {
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
}

/* Stats */
.stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 150px;
  margin-bottom: 150px;
  padding: 14px 160px;
  background: var(--color-white);
}

.stats__item {
  width: 224px;
}

.stats__value {
  font-size: 40px;
  font-weight: 300;
  line-height: 50px;
  margin-bottom: 10px;
}

.stats__label {
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
}

.stats__divider {
  width: 1px;
  height: 128px;
  flex-shrink: 0;
}

/* Footer */
.footer {
  background: var(--color-black);
  color: var(--color-white);
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 80px 78px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.footer__address {
  width: 300px;
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  text-align: left;
  word-break: break-word;
  overflow-wrap: break-word;
}

.footer__bottom {
  background: var(--color-footer-bar);
  padding: 32px;
}

.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.footer__links:last-child {
  margin-bottom: 0;
}

.footer__links a {
  font-size: 18px;
  font-weight: 400;
  line-height: 25.2px;
  opacity: 0.5;
}

.footer__links a:hover {
  opacity: 0.7;
}
