:root {
  --header: #08102b;
  --footer: #00086b;
  --heading: #253237;
  --text: #3d3d3d;
  --muted: #6b7280;
  --link: #eb8c00;
  --green: #71b821;
  --green-hover: #ff6c00;
  --yellow: #ffe100;
  --hero-a: #1b4bff;
  --hero-b: #0a2de0;
  --soft: #f4f2fb;
  --band: #ece8f8;
  --star: #f5a623;
  --radius: 16px;
  --container: 1170px;
}

*,
*::before,
*::after { box-sizing: border-box; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
.container { width: min(100% - 32px, var(--container)); margin: 0 auto; }

.site-header {
  background: var(--header);
  position: sticky;
  top: 0;
  z-index: 40;
}
.header-inner {
  display: flex;
  align-items: center;
  min-height: 64px;
  gap: 28px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  color: #fff;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.5px;
  line-height: 1;
}
.site-logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: 12px;
  flex: 1;
}
.primary-nav a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}
.primary-nav a.is-active { border-bottom-color: #fff; }
.primary-nav .nav-login { margin-left: auto; }
.btn-signup {
  background: var(--yellow) !important;
  color: #111 !important;
  border-radius: 20px;
  padding: 8px 18px !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  font-size: 12px !important;
  letter-spacing: .4px;
  border-bottom: 0 !important;
}
.header-tools { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.lang-switch { position: relative; }
.lang-btn {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.flag {
  width: 18px;
  height: 12px;
  display: inline-block;
  background: linear-gradient(#ff9933 33%, #fff 33% 66%, #138808 66%);
  box-shadow: 0 0 0 1px rgba(255,255,255,.2);
}
.lang-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: #fff;
  min-width: 160px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  z-index: 20;
}
.lang-switch.open .lang-menu { display: block; }
.lang-menu button {
  width: 100%;
  text-align: left;
  border: 0;
  background: none;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 13px;
}
.lang-menu button:hover { color: var(--link); }
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
}

.home-hero {
  background: linear-gradient(90deg, #1650ff 0%, #0d2dff 42%, #2b63ff 100%);
  color: #fff;
  min-height: 286px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.home-hero .container {
  position: relative;
  z-index: 1;
  padding-right: 38%;
  min-height: 286px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-hero h1 {
  margin: 0 0 12px;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}
.home-hero p {
  margin: 0 0 22px;
  max-width: 540px;
  font-size: 16px;
  line-height: 1.6;
}
.hero-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 46%;
  pointer-events: none;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 28%;
  background: linear-gradient(90deg, #0d2dff 0%, rgba(13,45,255,0) 100%);
  z-index: 1;
}

.btn-start,
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 22px;
  border: 0;
  cursor: pointer;
}
.btn-start {
  background: var(--yellow);
  color: #111;
  align-self: flex-start;
  border-radius: 8px;
}
.btn-play {
  background: var(--green);
  color: #fff !important;
  border-radius: 30px;
  padding: 12px 28px;
}
.btn-play:hover { background: var(--green-hover); color: #fff !important; }
.play-icon { display: inline-flex; color: #4caf20; }
.btn-play .play-icon { color: #fff; }

.split {
  padding: 70px 0 20px;
}
.split-row {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 70px;
}
.split-row:nth-child(even) {
  grid-template-columns: 1fr 440px;
}
.split-row:nth-child(even) .split-copy { order: 1; }
.split-row:nth-child(even) .split-media { order: 2; }
.split h2,
.block h2,
.page-hero h1,
.content-page h1,
.content-page h2,
.content-page h3 {
  color: var(--heading);
  font-weight: 600;
  margin: 0 0 16px;
}
.split h2 { font-size: 24px; }
.split p { margin: 0 0 14px; }
.split-media img,
.rounded-img {
  width: 100%;
  max-width: 440px;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
}
.split-cta { margin-top: 18px; text-align: center; }

.soft-block { background: var(--soft); padding: 50px 0; }
.band-block {
  background: var(--band);
  padding: 42px 0;
  position: relative;
}
.band-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: #2a3dff;
}
.band-block h3 { font-size: 20px; margin-bottom: 10px; }
.band-cta { margin-top: 18px; }

.promo-table { width: 100%; border-collapse: collapse; margin: 22px 0 10px; }
.promo-table th,
.promo-table td {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px solid #e6e4ee;
  font-size: 15px;
}
.promo-table th { color: var(--heading); font-weight: 700; }
.promo-code { color: #e10600; font-weight: 800; }
.note { font-style: italic; color: #6b6b6b; font-size: 14px; }

.adv-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  padding: 50px 0 30px;
  align-items: start;
}
.adv-grid ul { margin: 0; padding: 0 0 0 4px; }
.adv-grid li { list-style: none; position: relative; padding: 0 0 12px 18px; }
.adv-grid li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  position: absolute;
  left: 0;
  top: 10px;
}
.rating {
  text-align: center;
  color: var(--star);
  font-weight: 700;
  margin-top: 18px;
}
.rating .stars { font-size: 22px; letter-spacing: 3px; }
.review-card {
  border: 1px solid #b7e08a;
  border-radius: 6px;
  padding: 14px 16px;
  margin-bottom: 12px;
}
.review-card header {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--heading);
  background: transparent;
}
.review-card header span { color: #9aa0a6; font-weight: 600; text-transform: none; }
.review-card .stars { color: var(--star); margin: 4px 0 8px; }
.review-card p { margin: 0; font-size: 14px; line-height: 1.5; }
.review-list .btn-play { margin-top: 8px; }

.page-hero {
  background: #f6f2fe;
  text-align: center;
  padding: 34px 0 28px;
}
.page-hero h1 { font-size: 26px; margin-bottom: 8px; }
.crumbs { font-size: 13px; color: #454545; }
.crumbs a:hover { color: var(--link); }

.page-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  padding: 36px 0 50px;
}
.content-page h2 { font-size: 22px; margin-top: 28px; }
.content-page h3 { font-size: 18px; margin-top: 22px; }
.content-page a { color: var(--link); border-bottom: 1px dashed var(--link); }
.content-page a:hover { border-bottom: 0; }
.content-page .btn-play,
.content-page .btn-start {
  color: #fff !important;
  border-bottom: 0 !important;
}
.content-page ul { padding-left: 18px; }
.content-page li { margin-bottom: 8px; }
.content-page .lead-img {
  width: 100%;
  border-radius: 12px;
  margin: 0 0 16px;
  max-height: 360px;
  object-fit: cover;
}
.checklist {
  background: #f4f2fb;
  border-left: 6px solid #2a3dff;
  padding: 18px 22px;
  margin: 18px 0;
}
.steps { counter-reset: step; }
.steps li { list-style: none; margin: 0 0 12px; }
.specs { width: 100%; border-collapse: collapse; margin: 16px 0; }
.specs td, .specs th { border: 1px solid #eee; padding: 10px 12px; text-align: left; }
.specs th { color: #c0392b; width: 40%; }

.auth-box, .contact-form, .review-form {
  max-width: 520px;
  margin: 20px 0;
}
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 14px; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
}
.form-note { color: var(--green); font-weight: 600; min-height: 1.4em; }

.site-footer {
  background: var(--footer);
  color: #b8b8b8;
  margin-top: 60px;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr 1.2fr;
  gap: 40px;
  padding: 48px 0 24px;
}
.footer-logo { margin-bottom: 18px; }
.footer-brand p { max-width: 280px; line-height: 1.6; font-size: 15px; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a { display: inline-flex; }
.footer-links h3 {
  color: #6674a2;
  font-size: 16px;
  border-bottom: 1px solid #6674a2;
  padding-bottom: 12px;
  margin: 0 0 18px;
  position: relative;
}
.footer-links h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 65px;
  height: 2px;
  background: var(--yellow);
}
.footer-links ul { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #eee; font-size: 15px; }
.footer-links a:hover { color: var(--yellow); margin-left: 6px; }
.store-badges { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111;
  color: #fff;
  border-radius: 8px;
  padding: 6px 10px;
  min-width: 140px;
}
.store-badge.google { background: #fff; color: #111; border: 1px solid #ddd; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.1; font-weight: 700; font-size: 13px; }
.store-badge small { font-size: 9px; font-weight: 500; opacity: .8; }
.contact-list { list-style: none; margin: 0 0 16px; padding: 0; font-size: 14px; line-height: 1.8; }
.contact-list a { color: #fff; font-weight: 700; }
.country-select { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.country-select select {
  background: #0b0f2e;
  color: #fff;
  border: 0;
  padding: 8px 12px;
  min-width: 140px;
}
.footer-legal {
  padding: 10px 0 28px;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  color: #9aa3c7;
}
.footer-legal a { color: #fff; text-decoration: underline; }
.copy { margin-top: 8px; }

.cookie-bar {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
  padding: 12px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 50;
  max-width: 520px;
  font-size: 13px;
}
.cookie-bar[hidden] { display: none; }
.cookie-bar p { margin: 0; }
.cookie-bar button {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 16px;
  padding: 4px 14px;
  cursor: pointer;
}
.back-top {
  position: fixed;
  right: 16px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--yellow);
  background: #e9e7f3;
  cursor: pointer;
  display: none;
  z-index: 40;
}
.back-top.is-visible { display: grid; place-items: center; }

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 18px 0; }

@media (max-width: 991px) {
  .menu-toggle { display: block; }
  .primary-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    background: var(--header);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px 24px;
    gap: 12px;
  }
  .nav-open .primary-nav { display: flex; }
  .primary-nav .nav-login { margin-left: 0; }
  .home-hero .container,
  .split-row,
  .split-row:nth-child(even),
  .adv-grid,
  .page-layout,
  .footer-grid {
    grid-template-columns: 1fr;
    padding-right: 0;
  }
  .split-row:nth-child(even) .split-copy,
  .split-row:nth-child(even) .split-media { order: unset; }
  .hero-visual { display: none; }
  .home-hero { min-height: 220px; }
  .split-media img { max-width: 100%; }
}

@media (max-width: 640px) {
  .home-hero h1 { font-size: 28px; }
  .header-inner { gap: 10px; }
  .site-logo span { font-size: 22px; }
  .cookie-bar { left: 8px; right: 8px; max-width: none; }
}
