/* ===== Base ===== */
:root {
  --bg:          #000904;
  --card-bg:     #031812;
  --green:       #7CD20B;
  --green-mid:   #70BC32;
  --green-deep:  #3A7D03;
  --border:      #527E21;
  --white:       #FFFFFF;
  --muted:       #A8B2AC;
  --msg:         #F2F5F3;
  --btn-gradient:  linear-gradient(180deg, #70BC32 0%, #3A7D03 100%);
  --card-gradient: linear-gradient(180deg, #031812 0%, #000904 100%);
  --divider:   linear-gradient(180deg, #000904 0%, #7CD20B 50%, #000904 100%);
  --divider-h: linear-gradient(90deg, #000904 0%, #7CD20B 50%, #000904 100%);
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== Button / seats ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 56px;
  background: var(--btn-gradient);
  border-radius: 16px;
  font-size: clamp(19px, 2.4vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  transition: transform .2s ease, filter .2s ease;
}
.btn:hover { transform: translateY(-3px); filter: brightness(1.08); }
.btn__icon { width: 78px; height: 64px; object-fit: contain; flex-shrink: 0; }

.seats {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 40px;
  border: 3px solid var(--green);
  border-radius: 16px;
}
.seats__icon { width: 87px; height: 70px; object-fit: contain; flex-shrink: 0; }
.seats__text {
  color: #FFF;
  text-align: center;
  font-size: clamp(22px, 2.2vw, 39px);
  font-weight: 400;
  line-height: normal;
}
.seats__count { color: var(--green); font-weight: 700; }
.seats__word { color: #FFF; font-weight: 700; }

/* ===== Divider bar ===== */
.divider {
  display: block;
  width: 100%;
  height: 4px;
  background: var(--divider-h);
  border-radius: 10px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 3vw, 50px) 0 clamp(30px, 3.2vw, 52px);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
.hero__inner { position: relative; z-index: 1; }

.hero__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 32px;
  border: 3px solid var(--green);
  border-radius: 16px;
}
.brand__icon { width: 40px; height: 40px; flex-shrink: 0; }
.brand__name {
  font-size: clamp(15px, 1.3vw, 24px);
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.flag-badge {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 12px 32px;
  border: 3px solid var(--green);
  border-radius: 16px;
}
.flag-badge__flag { width: clamp(64px, 5vw, 88px); height: auto; flex-shrink: 0; }
.flag-badge__text { display: flex; flex-direction: column; align-items: center; line-height: 1.1; }
.flag-badge__made {
  font-size: clamp(18px, 1.7vw, 31px);
  font-weight: 500;
  text-transform: uppercase;
}
.flag-badge__country {
  font-size: clamp(18px, 1.7vw, 31px);
  font-weight: 700;
  text-transform: uppercase;
}

.hero__content { max-width: min(1040px, 62%); }

.hero__kicker {
  margin-top: clamp(36px, 4.4vw, 72px);
  color: var(--green);
  font-size: clamp(17px, 2.5vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
}
.hero__title {
  margin-top: clamp(12px, 1.2vw, 20px);
  font-size: clamp(36px, 5vw, 80px);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}
.hero__title--accent { color: var(--green); }

.hero__subtitle {
  margin-top: clamp(14px, 1.3vw, 22px);
  max-width: 830px;
  font-size: clamp(18px, 2.3vw, 38px);
  font-weight: 400;
  line-height: 1.25;
}

/* Features */
.features {
  display: flex;
  align-items: flex-start;
  gap: clamp(20px, 2.5vw, 44px);
  margin-top: clamp(28px, 2.6vw, 44px);
}
.features__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
}
.features__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: calc(-1 * clamp(20px, 2.5vw, 44px) / 2);
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: var(--divider);
  border-radius: 10px;
}
.features__icon {
  width: clamp(64px, 6vw, 96px);
  height: clamp(64px, 6vw, 96px);
  object-fit: contain;
}
.features__label {
  font-size: clamp(14px, 1.6vw, 25px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
}

/* ===== CTA band ===== */
.cta-band { padding: clamp(28px, 2.8vw, 44px) 0 clamp(30px, 3vw, 50px); }
.cta-band__inner {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: start;
  align-items: stretch;
  column-gap: clamp(20px, 2.5vw, 40px);
  row-gap: clamp(14px, 1.3vw, 20px);
}
.cta-band__inner > .btn   { grid-column: 1; grid-row: 1; }
.cta-band__inner > .seats { grid-column: 2; grid-row: 1; }
.cta-band__note {
  grid-column: 1;
  grid-row: 2;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(18px, 1.9vw, 30px);
}
.cta-band__note img { width: clamp(24px, 1.6vw, 30px); height: auto; }

/* used by the final CTA (button + seats, equal height) */
.cta-band__row {
  display: flex;
  align-items: stretch;
  gap: clamp(20px, 2.5vw, 40px);
  flex-wrap: wrap;
}

/* ===== Reviews ===== */
.reviews { padding: clamp(44px, 4.4vw, 72px) 0; }
.reviews__title {
  font-size: clamp(28px, 3.8vw, 60px);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.15;
  margin-bottom: clamp(36px, 4vw, 70px);
}
.reviews__title span { color: var(--green); }

.reviews-swiper { padding-bottom: 56px; }
.reviews-swiper .swiper-slide { height: auto; }

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px;
  background: var(--card-gradient);
  border: 3px solid var(--border);
  border-radius: 24px;
}
.card__head { display: flex; align-items: center; gap: 16px; }
.card__avatar {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 3px solid var(--green);
  padding: 3px;
}
.card__avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.card__id { display: flex; flex-direction: column; gap: 6px; }
.card__name { font-size: clamp(20px, 1.4vw, 24px); font-weight: 700; color: var(--green); }
.card__status {
  position: relative;
  padding-left: 18px;
  font-size: clamp(15px, 1vw, 18px);
  color: var(--muted);
}
.card__status::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.card__msg {
  display: flex;
  flex-direction: column;
  margin-top: clamp(20px, 1.7vw, 28px);
  font-size: clamp(17px, 1.35vw, 24px);
  color: var(--msg);
  line-height: 1.4;
}
.card__msg p { margin: 0; min-height: calc(1.4em * 4); }
.card__check { display: inline-block; vertical-align: -3px; width: 20px; height: 20px; }
.card__time {
  align-self: flex-end;
  margin-top: clamp(8px, 0.8vw, 14px);
  font-size: clamp(14px, 1vw, 17px);
  color: var(--muted);
}

.card__ticket {
  display: block;
  margin-top: clamp(14px, 1.3vw, 18px);
  border: 3px solid var(--green-deep);
  border-radius: 12px;
  overflow: hidden;
}
.card__ticket img { width: 100%; }

.card__rating { width: clamp(120px, 12vw, 160px); height: auto; margin-top: clamp(24px, 2.4vw, 40px); }

.reviews-swiper .swiper-pagination { bottom: 0; }
.reviews-swiper .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  margin: 0 8px !important;
  background: rgba(255, 255, 255, .25);
  opacity: 1;
  transition: background .2s ease;
}
.reviews-swiper .swiper-pagination-bullet-active { background: var(--green); }

/* ===== Final CTA ===== */
.final {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 7vw, 122px) 0 clamp(72px, 9vw, 155px);
}
.final__bg { position: absolute; inset: 0; z-index: 0; }
.final__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.final__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(0, 9, 4, .55) 42%, rgba(0, 9, 4, .8) 100%);
}
.final__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(36px, 4vw, 70px);
}
.final__title {
  font-size: clamp(28px, 3.8vw, 60px);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.15;
}
.final__title span { color: var(--green); }
.final__row { justify-content: center; align-items: stretch; }

.trust {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 4vw, 80px);
  flex-wrap: wrap;
}
.trust__item { display: flex; align-items: center; gap: 16px; }
.trust__icon { width: clamp(48px, 5.6vw, 90px); height: auto; flex-shrink: 0; }
.trust__label { font-size: clamp(16px, 1.9vw, 30px); font-weight: 400; }

/* ===== Responsive ===== */
@media (max-width: 1480px) {
  .hero__content { max-width: min(1000px, 64%); }
}

@media (max-width: 1120px) {
  .hero__content { max-width: 72%; }
}

@media (max-width: 980px) {
  .container { padding: 0 24px; }
  .hero { padding: 40px 0 56px; }
  .hero__bg img { object-position: 72% center; }
  .hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 9, 4, .6) 0%, rgba(0, 9, 4, .4) 45%, var(--bg) 88%);
  }
  .hero__content { max-width: 100%; }
  .hero__topbar { gap: 16px; }
}

@media (max-width: 767px) {
  .container { padding: 0 18px; }
  .btn { padding: 18px 32px; width: 100%; }
  .btn__icon { width: 36px; height: 30px; }
  .seats { justify-content: center; }
  .seats__icon { width: 58px; height: 47px; }

  .brand { padding: 12px 20px; gap: 12px; }
  .brand__icon { width: 30px; height: 30px; }
  .flag-badge { padding: 10px 20px; gap: 12px; }

  .hero__title { font-size: clamp(30px, 8.5vw, 46px); }
  .hero__subtitle { margin-top: 24px; }

  .features { flex-wrap: wrap; gap: 34px 24px; }
  .features__item { flex: 0 0 calc(50% - 12px); }
  .features__item:not(:last-child)::after { display: none; }

  .cta-band__inner { grid-template-columns: 1fr; }
  .cta-band__inner > .seats { grid-column: 1; grid-row: 3; }
  .cta-band__note { grid-row: 2; text-align: center; }
  .cta-band__row { flex-direction: column; align-items: stretch; }
  .final__row { width: 100%; max-width: 440px; margin-inline: auto; }

  .trust { flex-direction: column; align-items: flex-start; gap: 22px; }
}

@media (max-width: 480px) {
  .hero__kicker { margin-top: 40px; }
}
