* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Banner Section */
.bus-banner {
  /* background: linear-gradient(135deg, #FF7E21 0%, #FF6B00 100%); */
  background-color: #f4f5f6;
  /*TODO: добавить ссылку из репозитория*/
  background-image: url(https://499046ec-1df1-4e92-bc59-2d102f97f5ea.selstorage.ru/assets/5a6ddfd5-9d95-470b-bbce-6d7ce679b86c/bus-banner-3.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  /* color: white; */
  color: #222;
  padding: 80px 20px 60px;
  /* text-align: center; */
}

@media (max-width: 900px) {
  .bus-banner {
    background-image: initial;
  }
}

.bus-banner__wrapper {
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}

.bus-banner__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.bus-banner__subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.bus-banner__link {
  display: inline-block;
  /* background: white; */
  background-color: #FF7E21;
  color: #fff;
  /*padding: 16px 40px;*/
  /*border-radius: 8px;*/
  /*font-weight: 600;*/
  /* font-size: 18px; */
  font-size: 14px;
  /*height: 40px;*/
  transition: transform 0.2s, box-shadow 0.2s;

  font-weight: 700;
  border-radius: 5px;
  padding: 10px 20px;
  line-height: 143%;
}

.bus-banner__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Features Section */
.bus-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.bus-features__item {
  text-align: center;
  flex: 0 0 auto;
}

.bus-features__circle {
  width: 80px;
  height: 80px;
  background: #FFF5EE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.bus-features__text {
  font-size: 14px;
  font-weight: 500;
  max-width: 120px;
  line-height: 1.4;
}

/* Stats Section */
.bus-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background: #f9f9f9;
}

.bus-stats__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bus-stats__title {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 30px;
}

.bus-stats__big {
  color: #FF7E21;
  display: block;
}

.bus-stats__small {
  font-size: 36px;
  display: block;
  color: #333;
}

.bus-stats__text {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

.bus-stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.bus-stats__item {
  text-align: center;
}

.bus-stats__number {
  font-size: 48px;
  font-weight: 700;
  color: #FF7E21;
  margin-bottom: 8px;
}

.bus-stats__label {
  font-size: 16px;
  color: #666;
}

/* Club Section */
.bus-club {
  padding: 60px 20px;
}

.bus-club__image {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}

.bus-club__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* VIP Section */
/* VIP Section */
.vib {
  padding: 80px 20px;
  background: #ffffff;
}

.vib__title {
  font-size: 56px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #1a1a1a;
  line-height: 1.2;
}

.vib__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 15px;
  max-width: 1400px;
  margin: 0 auto;
}

.vib__item {
  border-radius: 20px;
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.vib__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.vib__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vib__item:hover::before {
  opacity: 1;
}

/* Cashback - большой блок */
.vib__item.cashback {
  grid-column: 1 / 6;
  grid-row: 1 / 2;
  background: linear-gradient(135deg, #FF7E21 0%, #FF9844 100%);
  color: white;
  padding: 45px;
}

.cashback__suptitle {
  display: flex;
  align-items: baseline;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}

.cashback__small {
  font-size: 32px;
  font-weight: 400;
  opacity: 0.95;
}

.cashback__big {
  font-size: 120px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
}

.cashback__text {
  font-size: 18px;
  color: white;
  line-height: 1.5;
  text-align: center;
  opacity: 0.98;
  max-width: 100%;
}

/* Document */
.vib__item.document {
  grid-column: 6 / 9;
  grid-row: 1 / 2;
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE8D0 100%);
}

.document__text {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  text-align: center;
}

/* Zone */
.vib__item.zone {
  grid-column: 9 / 13;
  grid-row: 1 / 2;
  background: linear-gradient(135deg, #F0F8FF 0%, #D0E8FF 100%);
}

.zone__text {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  text-align: center;
}

/* Manage - с иконкой */
.vib__item.manage {
  grid-column: 1 / 4;
  grid-row: 2 / 3;
  background: linear-gradient(135deg, #FFF0F5 0%, #FFD0E5 100%);
}

.manage__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.manage__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.manage__text {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  text-align: center;
}

/* Refund */
.vib__item.refund {
  grid-column: 4 / 13;
  grid-row: 2 / 3;
  background: linear-gradient(135deg, #F0FFF0 0%, #D0FFE0 100%);
}

.refund__text {
  font-size: 28px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  text-align: center;
}

/* WWU Section */
.wwu {
  padding: 80px 20px;
  background: #f9f9f9;
}

.wwu__block {
  max-width: 1200px;
  margin: 0 auto;
}

.wwu__title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #333;
}

.wwu__item {
  display: flex;
  gap: 40px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
  align-items: center;
}

.wwu__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.wwu__photo {
  flex: 0 0 400px;
  height: 300px;
}

.wwu__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wwu__main {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wwu__pill {
  display: inline-block;
  background: #FF7E21;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  width: fit-content;
}

.wwu__caption {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.wwu__more {
  color: #FF7E21;
  font-weight: 600;
  font-size: 16px;
}

/* Form Section */
.form-section {
  padding: 80px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.form-block {
  text-align: center;
}

.form-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.form-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field {
  position: relative;
}

.form-field.full-width {
  grid-column: 1 / -1;
}

.contact-form input {
  width: 100%;
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.2s;
}

.contact-form input:focus {
  outline: none;
  border-color: #FF7E21;
}

.submit-btn {
  grid-column: 1 / -1;
  background: #FF7E21;
  color: white;
  padding: 16px 40px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.submit-btn:hover {
  background: #FF6B00;
  transform: translateY(-2px);
}

.form-disclaimer {
  font-size: 13px;
  color: #999;
  margin-top: 20px;
}

.form-disclaimer a {
  color: #FF7E21;
  text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 80px;
  left: 20px;
  right: 20px;
  max-width: 600px;
  background: white;
  padding: 20px 60px 20px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  z-index: 999;
}

.cookie-banner__text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.cookie-banner__text a {
  color: #FF7E21;
  text-decoration: underline;
}

.cookie-banner__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

/* Responsive */
@media (max-width: 1200px) {
  .vib__grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto;
  }

  .vib__item.cashback {
    grid-column: 1 / 4;
  }

  .vib__item.document {
    grid-column: 4 / 7;
  }

  .vib__item.zone {
    grid-column: 1 / 4;
  }

  .vib__item.manage {
    grid-column: 4 / 7;
  }

  .vib__item.refund {
    grid-column: 1 / 7;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .bus-banner__title {
    font-size: 32px;
  }

  .bus-stats {
    grid-template-columns: 1fr;
  }

  .bus-stats__title {
    font-size: 48px;
  }

  .vib__title,
  .wwu__title,
  .form-title {
    font-size: 32px;
  }

  .vib__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 15px;
  }

  .vib__item.cashback,
  .vib__item.document,
  .vib__item.zone,
  .vib__item.manage,
  .vib__item.refund {
    grid-column: 1 / 2;
    grid-row: auto;
  }

  .wwu__item {
    flex-direction: column;
  }

  .wwu__photo {
    flex: 0 0 auto;
    width: 100%;
    height: 200px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    bottom: 70px;
  }
}
