*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #021416;
  color: #f2e2bf;
  line-height: 1.75;
  font-size: 18px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.site-main,
section,
header,
footer {
  width: 100%;
}

a {
  color: #c9a96b;
  text-decoration-thickness: 1px;
}

a:hover {
  color: #b38f4b;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

/* Header */
.site-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 50;
  background: #052022;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  position: relative;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
  min-width: 0;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex: 0 0 auto;
  min-width: 0;
}

.site-logo img {
  display: block;
  width: auto;
  height: 48px;
  max-width: 180px;
  object-fit: contain;
}

.site-logo--text span {
  display: inline-block;
  font-size: 30px;
  font-weight: 800;
  color: #f2e2bf;
  white-space: nowrap;
  line-height: 1;
}

.header-bonus-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0b6f63, #0f8576);
  color: #f2e2bf !important;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid rgba(201, 169, 107, 0.35);
  box-shadow: 0 10px 28px rgba(201, 169, 107, 0.16);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-bonus-btn:hover {
  background: linear-gradient(135deg, #0f8576, #129988);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: #103033;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: #f2e2bf;
  border-radius: 2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-toggle::before {
  top: 15px;
  box-shadow: 0 7px 0 #f2e2bf;
}

.menu-toggle::after {
  top: 29px;
}

.menu-toggle.is-open::before {
  top: 21px;
  box-shadow: none;
  transform: rotate(45deg);
}

.menu-toggle.is-open::after {
  top: 21px;
  transform: rotate(-45deg);
}

.site-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav a {
  color: #d8c79f;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 10px;
}

.site-nav a:hover {
  color: #f2e2bf;
  background: rgba(11, 111, 99, 0.22);
}

@media (max-width: 991px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    margin: 0;
    background: #041719;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(201, 169, 107, 0.12);
    max-height: min(60vh, 420px);
    overflow-y: auto;
    z-index: 60;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 10px 12px;
    text-align: center;
  }
}

/* Hero & layout */
.site-main {
  padding-bottom: 48px;
}

.hero {
  padding: 32px 0 8px;
}

.hero .text-wrap {
  text-align: center;
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #f2e2bf;
}

.hero .lead {
  margin: 0 0 16px;
  color: #d8c79f;
  font-size: 19px;
}

.hero-cta {
  margin: 28px 0 8px;
  display: flex;
  justify-content: center;
}

.hero-banner {
  display: block;
  width: 100%;
  margin-top: 28px;
}

.hero-banner img {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.section-block {
  padding: 40px 0;
}

.section-block:nth-of-type(even) {
  background: #041719;
}

.section-block h2 {
  margin: 0 0 18px;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.25;
  color: #f2e2bf;
  text-align: center;
}

.section-block .text-wrap p,
.section-block .text-wrap li {
  color: #d8c79f;
}

.section-block .text-wrap p {
  margin: 0 0 16px;
}

.text-wrap {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

.text-wrap ul,
.text-wrap ol {
  margin: 0 0 16px;
  padding-left: 1.25rem;
  color: #d8c79f;
}

.text-wrap li + li {
  margin-top: 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 17px;
  text-decoration: none;
  border: 1px solid rgba(201, 169, 107, 0.45);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 28px rgba(201, 169, 107, 0.16);
}

.btn--primary {
  background: linear-gradient(135deg, #0b6f63, #0f8576);
  color: #f2e2bf !important;
}

.btn--primary:hover {
  background: linear-gradient(135deg, #0f8576, #129988);
  transform: translateY(-1px);
}

.btn--secondary {
  background: #103033;
  color: #f2e2bf !important;
  border-color: rgba(255, 255, 255, 0.12);
}

.btn--secondary:hover {
  border-color: rgba(201, 169, 107, 0.35);
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.card {
  background: #082326;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 22px 22px 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  border-color: rgba(201, 169, 107, 0.24);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(201, 169, 107, 0.12);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #f2e2bf;
}

.card p {
  margin: 0;
  color: #a89d7f;
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 991px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ */
.faq {
  margin-top: 8px;
}

.faq-item {
  background: #082326;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.faq-item h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #c9a96b;
}

.faq-item p {
  margin: 0;
  color: #d8c79f;
  font-size: 17px;
}

/* Footer */
.site-footer {
  background: #052022;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 0 48px;
  margin-top: 24px;
}

.footer-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  display: flex;
  justify-content: center;
}

.footer-brand .site-logo img {
  height: 40px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
}

.footer-links a {
  color: #d8c79f;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

.footer-links a:hover {
  color: #c9a96b;
}

.footer-copy {
  margin: 0;
  color: #a89d7f;
  font-size: 14px;
}

.muted {
  color: #a89d7f;
  font-size: 16px;
}
