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

:root {
  --header-footer-bg: #0d1a42;
  --main-bg: #010a25;
  --accent-gradient: linear-gradient(135deg, #cb1d21, #f65a5e);
  --hero-bg: #1f3062;
  --heading-color: #FFFFFF;
  --main-text-color: #FFFFFF;
  --line-soft: #334776;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--main-bg);
  color: #ffffff;
  min-height: 100vh;
}

main {
  color: var(--main-text-color);
}

main h1,
main h2,
main h3 {
  color: var(--heading-color);
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0;
  border-bottom: 1px solid var(--line-soft);
  background: var(--header-footer-bg);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 65px;
  border-radius: 12px;
  text-decoration: none;
  padding: 6px 10px;
}

.logo img {
  width: 100%;
  max-width: 140px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.35));
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--hero-bg);
  background: transparent;
  color: #ffffff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--heading-color);
  border-radius: 2px;
  position: relative;
  transition: all 0.2s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.auth-actions {
  display: flex;
  gap: 12px;
}

.header-nav {
  margin-top: 18px;
}

.header-nav-inner {
  padding: 12px 0;
  background: var(--accent-gradient);
  border-radius: 14px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.breadcrumb {
  padding: 18px 0 0;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.breadcrumb li + li::before {
  content: ">";
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.policy {
  padding: 40px 0 80px;
}

.policy-inner {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  padding: 32px;
  display: grid;
  gap: 16px;
}

.policy-inner h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.policy-inner h2 {
  font-size: 1.2rem;
  margin-top: 8px;
}

.policy-inner p {
  color: var(--main-text-color);
  line-height: 1.7;
}

.hero {
  padding: 40px 0 60px;
}

.hero-inner {
  background: var(--hero-bg);
  border-radius: 18px;
  padding: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 32px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 16px;
}

.hero-content p {
  color: var(--main-text-color);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 20px;
}

.hero-cta {
  align-self: flex-start;
}

.hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-media img {
  width: min(380px, 100%);
  height: auto;
  border-radius: 18px;
}

.content-stack {
  padding: 0 0 80px;
}

.content-stack .container > div {
  margin-bottom: 40px;
}

.content-stack .container > div:last-child {
  margin-bottom: 0;
}

.content-block {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  padding: 32px;
}

.content-stack h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  margin-bottom: 12px;
}

.content-stack h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  margin-bottom: 12px;
}

.content-block img {
  width: 100%;
  max-width: 920px;
  border-radius: 18px;
  display: block;
  margin: 0 auto 20px;
}

.content-stack p {
  color: var(--main-text-color);
  line-height: 1.7;
  margin-bottom: 20px;
}

.content-stack ol {
  margin-left: 20px;
  display: grid;
  gap: 8px;
  color: var(--main-text-color);
  line-height: 1.6;
}

.content-block h2:not(:first-child),
.content-block h3:not(:first-child) {
  margin-top: 40px;
}

.content-stack ul {
  list-style: none;
  padding-left: 0;
  color: var(--main-text-color);
  display: grid;
  gap: 8px;
}


.step-row {
  display: block;
  position: relative;
  padding: 16px 0 16px 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.step-row:first-of-type {
  border-top: none;
}

.step-row p {
  color: var(--main-text-color);
  line-height: 1.7;
}

.step-marker {
  position: absolute;
  left: 0;
  top: 16px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--heading-color);
  background: var(--line-soft);
}




.offers-placeholder {
  width: min(320px, 100%);
  height: 240px;
  background: #2D6BFF;
  border-radius: 18px;
  margin-bottom: 22px;
}

.table-wrapper {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: #ffffff;
  font-size: 0.98rem;
  border-radius: 14px;
  overflow: hidden;
}

.data-table th,
.data-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-soft);
}

.data-table thead th {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--heading-color);
  background: var(--line-soft);
}


.content-block.faq-block {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}

.faq-item {
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
}

.faq-item:first-of-type {
  border-top: none;
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.faq-item p {
  color: var(--main-text-color);
}

.site-footer {
  padding: 40px 0 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--header-footer-bg);
}

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

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 230px;
  height: 65px;
  border-radius: 12px;
  text-decoration: none;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-end;
  align-items: flex-start;
}

.footer-links a {
  text-decoration: none;
  color: var(--heading-color);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.footer-disclaimer {
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--main-text-color);
  max-width: 520px;
  line-height: 1.6;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.footer-copyright {
  margin-top: 18px;
  font-size: 0.78rem;
  color: var(--main-text-color);
  text-align: center;
  width: 100%;
}

.footer-age {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 6px;
  border-radius: 999px;
  border: 1px solid var(--heading-color);
  font-weight: 600;
  font-size: 0.65rem;
  color: var(--main-text-color);
  margin-left: auto;
  margin-right: auto;
}

.content-stack ul li {
  position: relative;
  padding-left: 20px;
}

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


.btn {
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  background: none;
  cursor: pointer;
}

.btn-outline {
  border: 1px solid var(--heading-color);
  color: #ffffff;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #ffffff;
  border: none;
  box-shadow: none;
}

@media (max-width: 720px) {
  .header-inner {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    width: auto;
    flex: 0 0 auto;
    justify-content: flex-start;
    padding-left: 0;
    margin: 0;
  }

  .nav-toggle {
    display: inline-flex;
    align-self: center;
    margin-left: auto;
  }

  .auth-actions {
    width: 100%;
    justify-content: space-between;
    order: 3;
  }

  .btn {
    flex: 1;
  }

  .header-nav {
    display: none;
  }

  .site-header.nav-open .header-nav {
    display: block;
  }

  .header-nav-inner {
    padding: 14px 0 18px;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 16px;
  }

  .content-stack {
    padding: 0 0 60px;
  }

  .content-stack .container > div {
    margin-bottom: 28px;
  }

  .hero-cta {
    align-self: center;
    width: 80%;
    justify-content: center;
  }

  .hero-media {
    order: -1;
  }

  .content-block {
    padding: 20px;
  }

  .content-section {
    margin-top: 28px;
  }

  .steps-inner {
    padding: 20px;
  }

  .step-row {
    text-align: left;
  }

  .policy-inner {
    padding: 20px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-logo {
    align-self: center;
  }

  .footer-links {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .footer-disclaimer {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.7rem;
  }

  .footer-copyright {
    font-size: 0.7rem;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 14px;
  }
}
