@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Ubuntu", sans-serif;
  color: #fff;
  background: #070e1c;
  min-height: 100vh;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

header {
  background: #0c1728;
}
.nav-wrap {
  max-width: 1116px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 42px;
  height: 56px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 32px;
  background: linear-gradient(180deg, #ff7a28 0%, #ffab6e 36%, #ff7a28 78%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.site-logo img {
  width: 42px;
  height: 32px;
}
.nav-links {
  display: flex;
  gap: 24px;
}
.nav-links a {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
}
.nav-links a:hover {
  color: #ff7a28;
}
.burger {
  display: none;
  background: 0;
  border: 0;
  cursor: pointer;
}
.burger svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.hero {
  background: linear-gradient(180deg, #0c1728 0%, #1b3a5e 100%);
  padding: 96px 42px;
}
.hero-content {
  max-width: 1116px;
  margin: 0 auto;
}
.container {
  max-width: 1116px;
  margin: 0 auto;
  padding: 40px 42px;
}
.page-title {
  font-size: 64px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1;
}
.page-subtitle {
  text-align: center;
  font-size: 20px;
  margin-bottom: 48px;
}

.section-label {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.promo-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 6px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.promo-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}
.promo-header .brand-box {
  flex: 1;
  height: 164px;
  background: #0c1728;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-header .brand-box img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.rating-col {
  text-align: center;
  width: 100px;
  flex-shrink: 0;
}
.rating-col .big {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}
.rating-col .stars {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-top: 4px;
}
.rating-col .stars svg {
  width: 20px;
  height: 20px;
}
.promo-desc {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
}
.method-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.method-tags span {
  font-size: 16px;
  background: #0c1728;
  border-radius: 6px;
  padding: 6px 12px;
}
.btn-primary {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 48px;
  background: #ff7a28;
  color: #07101c;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  border-radius: 6px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary:hover {
  background: #e56a18;
}

.legal-note {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 6px;
  padding: 24px;
  margin-top: 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.content-section {
  background: linear-gradient(180deg, #0c1728 0%, #1b3a5e 100%);
  padding: 96px 42px;
}
.content-wrap {
  max-width: 1116px;
  margin: 0 auto;
}
.section-heading {
  font-size: 64px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  line-height: 1;
}

.info-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 6px;
  padding: 24px;
  margin-bottom: 24px;
}
.info-card h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1;
}
.info-card h3 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 14px 0 6px;
}
.info-card p {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.info-card ul {
  margin: 6px 0 10px 18px;
  font-size: 20px;
  line-height: 1.5;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.check-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: #ff7a28;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-icon svg {
  width: 14px;
  height: 14px;
  fill: #fff;
}
.check-row span {
  font-size: 20px;
  line-height: 1.2;
}

.bullet-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ff7a28;
  border-radius: 50%;
  margin-right: 6px;
  flex-shrink: 0;
}

.bullet-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}
.bullet-row a {
  color: #ff7a28;
  text-decoration: underline;
}
.accent-txt {
  color: #ff7a28;
}

footer {
  background: #0c1728;
}
.footer-inner {
  max-width: 1116px;
  margin: 0 auto;
  padding: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-nav {
  display: flex;
  gap: 24px;
}
.footer-nav a {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
}
.footer-nav a:hover {
  color: #ff7a28;
}
.footer-disclaimer {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(27, 58, 94, 0.1) 100%
  );
  backdrop-filter: blur(4px);
  border-radius: 6px;
  padding: 24px;
  width: 100%;
}
.footer-disclaimer h4 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-disclaimer p {
  font-size: 20px;
  line-height: 1.2;
}
.footer-badge-label {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
}
.footer-logos {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-logos img {
  height: 32px;
}
.footer-logos .logo-18plus {
  height: 48px;
}
.footer-copy {
  font-size: 18px;
  text-align: center;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  padding: 13px 14px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
}
.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

#ck {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #0c1728;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 20px 24px;
  max-width: 520px;
  width: 90%;
  z-index: 999;
  display: none;
}
#ck h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
#ck p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 14px;
}
#ck .btn-primary {
  width: auto;
  padding: 12px 28px;
  font-size: 13px;
}

#mob {
  display: none;
  position: fixed;
  inset: 0;
  background: #0c1728;
  z-index: 1000;
  flex-direction: column;
}
#mob.on {
  display: flex;
}
.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 42px;
  border-bottom: 1px solid #ff7a28;
}
.mobile-close {
  background: 0;
  border: 0;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}
.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.mobile-nav a {
  font-size: 22px;
  font-weight: 700;
}

@media (max-width: 800px) {
  .nav-links {
    display: none;
  }
  .burger {
    display: block;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .page-title {
    font-size: 32px;
  }
  .section-heading {
    font-size: 32px;
  }
  .promo-header {
    flex-direction: column;
    align-items: center;
  }
  .promo-header .brand-box {
    width: 100%;
    height: auto;
  }
  .footer-logos {
    gap: 20px;
  }
  .hero {
    padding: 48px 20px;
  }
  .content-section {
    padding: 48px 20px;
  }
  .container {
    padding: 24px 16px;
  }
}
