:root {
  --bg: #0B0F0E;
  --bg-section: #111714;
  --surface: #1A1D18;
  --surface-hover: #23281D;
  --accent: #D6B46A;
  --accent-strong: #E8C981;
  --accent-muted: #7D9340;
  --text-main: #F4F0E6;
  --text-muted: #B8B1A2;
  --border: #3B3527;
  --button-text-dark: #17130B;
  --font-base: Georgia, "Times New Roman", serif;
  --font-ui: Arial, Helvetica, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-section) 45%, var(--bg) 100%);
  color: var(--text-main);
  font-family: var(--font-ui);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3 {
  font-family: var(--font-base);
  font-weight: 700;
}

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

.section {
  padding: 64px 0;
}

.section--alt {
  background: var(--bg-section);
}

.section__eyebrow {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 12px;
}

.section__title {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--text-main);
}

.section__lead {
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--font-ui);
}

.btn--primary {
  background: linear-gradient(180deg, var(--accent-strong) 0%, #C99C4B 100%);
  color: var(--button-text-dark);
}

.btn--primary:hover {
  background: var(--accent-strong);
}

.btn--ghost {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn--ghost:hover {
  border-color: var(--accent-strong);
  color: var(--accent-strong);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 15, 14, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}

.header .container {
  padding-left: 20px;
  padding-right: 20px;
}

.header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
  line-height: 0;
}

.header__logo img {
  width: 100%;
  max-width: 180px;
  height: auto;
  display: block;
}

.header__nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.header__nav a {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}

.header__nav a:hover {
  color: var(--text-main);
}

.header__actions {
  display: flex;
  gap: 12px;
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.header__burger span {
  width: 22px;
  height: 2px;
  background: var(--text-main);
}

.hero {
  padding: 72px 0 40px;
  background: linear-gradient(180deg, rgba(11, 15, 14, 0.88) 0%, rgba(11, 15, 14, 0.88) 100%), radial-gradient(circle at 70% 30%, rgba(214, 180, 106, 0.16), transparent 42%), url("../img/banners/hero-1.webp");
  background-size: cover;
  background-position: bottom center;
}

.hero__row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 18px;
}

.hero__title {
  font-size: 46px;
  line-height: 1.12;
  margin-bottom: 16px;
  color: var(--text-main);
}

.hero__subtitle {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 480px;
  margin-bottom: 24px;
}

.hero__badges {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.hero__badge svg {
  color: var(--accent);
  flex-shrink: 0;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.offer-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

.offer-card__main {
  max-width: 420px;
}

.offer-card__label {
  display: inline-block;
  background: rgba(214, 180, 106, 0.14);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 16px;
}

.offer-card__value {
  font-family: var(--font-base);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent-strong);
  line-height: 1.1;
  margin-bottom: 4px;
}

.offer-card__sub {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.offer-card__list {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.offer-card__list li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--text-main);
  font-size: 14px;
}

.offer-card__list svg {
  color: var(--accent);
  flex-shrink: 0;
}

.slots__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.slots__arrows {
  display: flex;
  gap: 10px;
}

.slots__arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slots__arrow:hover {
  border-color: var(--accent);
}

.slots-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.slots-slider::-webkit-scrollbar {
  display: none;
}

.slot-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.slot-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.slot-card__body {
  padding: 12px 14px 16px;
}

.slot-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slot-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 15, 14, 0.68);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.slot-card:hover .slot-card__overlay {
  opacity: 1;
}

.slot-card__btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(180deg, var(--accent-strong) 0%, #C99C4B 100%);
  color: var(--button-text-dark);
}

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

.duo__panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
}

.duo__panel h2 {
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 22px;
}

.duo__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.duo__item:last-of-type {
  margin-bottom: 24px;
}

.duo__item-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--bg-section);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.duo__item-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-main);
  margin-bottom: 4px;
}

.duo__item-text {
  font-size: 13px;
  color: var(--text-muted);
}

.about {
  background: var(--bg);
}

.about__content {
  max-width: 100%;
}

.about h2 {
  font-size: 30px;
  margin-bottom: 18px;
  color: var(--accent);
}

.about h3 {
  font-size: 19px;
  margin-top: 26px;
  margin-bottom: 10px;
  color: var(--text-main);
}

.about p {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: 15px;
}

.about ul {
  color: var(--text-muted);
  margin: 0 0 14px 0;
  display: grid;
  gap: 8px;
}

.about ul li {
  padding-left: 22px;
  position: relative;
  font-size: 14px;
}

.about ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
}

.faq-item__q {
  padding: 18px 22px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-main);
}

.faq-item__q .chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item.is-open .chevron {
  transform: rotate(-135deg);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  color: var(--text-muted);
  font-size: 14px;
  transition: max-height 0.25s ease, padding 0.25s ease;
}

.faq-item.is-open .faq-item__a {
  padding: 0 22px 20px;
  max-height: 400px;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 50px 0 30px;
  background: var(--bg-section);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 34px;
}

.footer__brand {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 260px;
  margin-top: 14px;
}

.footer__title {
  font-size: 14px;
  margin-bottom: 14px;
  color: var(--accent);
  font-weight: 700;
}

.footer__col a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.footer__col a:hover {
  color: var(--accent);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 960px) {
  .hero__row {
    grid-template-columns: 1fr;
  }

  .offer-card__main {
    max-width: 100%;
  }

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

  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 2px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 8px 20px 16px;
  }

  .header__nav.is-open {
    display: flex;
  }

  .header__nav a {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
  }

  .header__nav a:last-child {
    border-bottom: none;
  }

  .header__burger {
    display: flex;
  }

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

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

  .offer-card__thumbs {
    position: static;
    margin-top: 20px;
    justify-content: flex-end;
  }

  .offer-card__thumbs img {
    width: 84px;
  }

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

  .header__row {
    padding: 14px 0;
  }

  .header__actions .btn {
    padding: 10px 14px;
    font-size: 13px;
  }

  .slot-card {
    flex: 0 0 160px;
  }
}
