:root {
  --bg: #06162c;
  --surface: #0b2241;
  --surface2: #102b50;
  --line: #284467;
  --text: #f5f8ff;
  --muted: #b8c7dc;
  --accent: #ffb800;
  --orange: #ff6a19;
  --blue: #36a8ff;
  --green: #47d18c;
  --radius: 24px;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}
body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 0, #162445 0, transparent 30%), var(--bg);
  color: var(--text);
  font:
    17px/1.58 Inter,
    Arial,
    sans-serif;
}
a {
  color: inherit;
}
.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
}

/* Header / Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 22, 44, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
}
.topbar .wrap {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  font-weight: 900;
  font-size: 23px;
  text-decoration: none;
  letter-spacing: -0.5px;
}
.brand i {
  color: var(--orange);
  font-style: normal;
}
.topnav {
  display: flex;
  gap: 18px;
  margin-left: auto;
}
.topnav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
}
.topnav a:hover {
  color: #fff;
}
.header-actions {
  display: flex;
  gap: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), #ff9c1a);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  border: 0;
  box-shadow: 0 9px 22px rgba(255, 106, 25, 0.24);
  cursor: pointer;
}
.btn.alt {
  background: transparent;
  border: 1px solid var(--line);
  box-shadow: none;
}

/* Hero Section */
.hero {
  margin: 34px auto 18px;
  padding: clamp(28px, 5vw, 62px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 36px;
  background: linear-gradient(130deg, #101522 0, #0b1c35 62%, #123765 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.hero:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  right: -130px;
  top: -170px;
  background: rgba(255, 184, 0, 0.12);
  filter: blur(4px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: 34px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}
.hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -2.4px;
  margin: 12px 0 22px;
  max-width: 850px;
}
.lead {
  font-size: 20px;
  color: #dbe5f4;
  max-width: 800px;
  margin: 0;
}

/* Bonus Card Widget */
.bonus-card {
  background: linear-gradient(160deg, #173d70, #0c2b50);
  border: 1px solid #3a5e86;
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.bonus-card strong {
  display: block;
  font-size: 39px;
  line-height: 1.05;
  color: var(--accent);
  margin: 8px 0;
}
.bonus-card small {
  display: block;
  color: var(--muted);
  margin-top: 10px;
}
.bonus-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 14px 0 18px;
}
.bonus-tab {
  min-height: 44px;
  border: 1px solid #45678d;
  border-radius: 11px;
  background: #0a2546;
  color: #c8d7e9;
  font-weight: 800;
  cursor: pointer;
}
.bonus-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #182034;
}

/* Anchors Nav */
.anchors {
  display: flex;
  gap: 10px;
  overflow: auto;
  padding: 12px 0 24px;
  scrollbar-width: thin;
}
.anchors a {
  white-space: nowrap;
  text-decoration: none;
  color: #dce8f8;
  border: 1px solid var(--line);
  background: #0b213e;
  border-radius: 99px;
  padding: 9px 15px;
  font-size: 14px;
}

/* Facts Grid */
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0 0 22px;
}
.fact {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, #111b2e, #101a2a);
}
.fact b {
  display: block;
  color: var(--accent);
  font-size: 25px;
  margin-bottom: 6px;
}
.fact span {
  color: var(--muted);
  font-size: 15px;
}
.fact span strong {
  color: #fff;
}

/* General Sections */
.section {
  padding: 38px clamp(20px, 4vw, 46px);
  margin: 22px 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: linear-gradient(
    145deg,
    rgba(16, 43, 80, 0.93),
    rgba(7, 26, 52, 0.97)
  );
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
h2 {
  font-size: clamp(29px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -1px;
  margin: 0 0 18px;
}
h3 {
  font-size: 23px;
  margin: 30px 0 12px;
}
p {
  margin: 0 0 18px;
  color: #e4ebf6;
}
.muted {
  color: var(--muted);
}

/* Grids & Snippets */
.snippet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0;
}
.snippet {
  background: rgba(5, 18, 36, 0.56);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}
.snippet b {
  display: block;
  color: var(--accent);
  font-size: 20px;
  margin-bottom: 7px;
}
.snippet p {
  font-size: 15px;
  margin: 0;
  color: #d3deed;
}

/* Steps */
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 22px 0;
}
.step {
  padding: 20px;
  background: #091c36;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.step:before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange);
  font-weight: 900;
  margin-bottom: 12px;
}
.step b {
  display: block;
  margin-bottom: 5px;
}

.clean {
  padding-left: 22px;
  margin: 18px 0;
}
.clean li {
  margin: 8px 0;
}
.clean li::marker {
  color: var(--orange);
}

/* Tables */
.table-wrap {
  overflow: auto;
  margin: 20px 0;
  border: 1px solid var(--line);
  border-radius: 18px;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: #071b34;
}
th,
td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #1c385a;
  vertical-align: top;
}
th {
  background: #12345d;
  color: #fff;
  font-size: 14px;
}
td {
  color: #dce6f4;
  font-size: 15px;
}
tbody tr:nth-child(even) {
  background: #0a2342;
}
tbody tr:last-child td {
  border-bottom: 0;
}

.note {
  margin: 22px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: rgba(255, 184, 0, 0.08);
  color: #edf3fc;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mini {
  padding: 20px;
  border-radius: 18px;
  background: #081d38;
  border: 1px solid var(--line);
}
.mini h3 {
  margin: 0 0 10px;
}

.promo-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 22px 0;
}
.promo {
  padding: 16px 18px;
  border-radius: 16px;
  background: #091e3a;
  border: 1px solid #2a4d73;
}
.promo b {
  color: var(--accent);
}

.app-benefits {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}
.app-benefits li {
  position: relative;
  padding-left: 30px;
  color: #edf5ff;
  font-weight: 700;
}
.app-benefits li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--accent);
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
}

details {
  background: #081d38;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  margin: 10px 0;
}
summary {
  cursor: pointer;
  font-weight: 800;
}
details p {
  margin: 12px 0 0;
  color: #cbd8e9;
}

.footer {
  margin-top: 34px;
  padding: 34px 0 26px;
  border-top: 1px solid #234d78;
  background: #061a35;
  color: #b9c8da;
  font-size: 14px;
}
.footer a {
  text-decoration: none;
}
.footer a:hover {
  color: #fff;
}
.footer-products {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  padding: 18px 22px;
  border: 1px solid #245482;
  border-radius: 18px;
  background: #0a3b70;
}
.footer-products a {
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}
.footer-main {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid #214b75;
  border-radius: 18px;
  background: #0a315d;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 24px;
}
.footer-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  color: #e1eaf6;
  text-align: center;
}
.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-top: 18px;
  padding: 16px 20px;
  border-radius: 14px;
  background: #0b4b86;
}
.footer-legal-nav a {
  color: #fff;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  padding: 12px 18px;
  border: 1px solid #2d628f;
  border-radius: 14px;
  background: #082b52;
  color: #fff;
  text-align: center;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}
.trust-badge:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.trust-logo {
  display: block;
  line-height: 1.05;
}
.trust-logo strong {
  display: block;
  font-size: 22px;
  letter-spacing: 0.02em;
}
.trust-logo small {
  display: block;
  margin-top: 6px;
  color: #b9c9dd;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.trust-badge.cga .trust-logo strong {
  color: #73c8ff;
}
.trust-badge.ecogra .trust-logo strong {
  color: #88d24d;
}
.trust-badge.itech .trust-logo strong {
  color: #f5f8ff;
}
.footer-notice {
  margin-top: 18px;
  padding: 18px 22px;
  border: 1px solid #214b75;
  border-radius: 16px;
  background: #082b52;
}
.footer-notice p {
  margin: 0 0 10px;
  color: #c9d7e7;
}
.footer-notice p:last-child {
  margin-bottom: 0;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #245482;
}
.footer-brand {
  color: #fff;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 1px;
}
.age-mark {
  display: inline-grid;
  place-items: center;
  min-width: 46px;
  height: 46px;
  border: 1px solid #3a78ae;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
}

/* Responsiveness */
@media (max-width: 900px) {
  .topnav {
    display: none;
  }
  .hero-grid,
  .two-col {
    grid-template-columns: 1fr;
  }
  .facts,
  .snippet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-products {
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-strip {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .bonus-card {
    max-width: 520px;
  }
  .hero h1 {
    letter-spacing: -1.4px;
  }
}
@media (max-width: 560px) {
  body {
    font-size: 16px;
  }
  .wrap {
    width: min(100% - 20px, 1180px);
  }
  .topbar .btn {
    padding: 0 10px;
    font-size: 13px;
  }
  .brand {
    font-size: 18px;
  }
  .header-actions {
    margin-left: auto;
  }
  .hero {
    border-radius: 24px;
    padding: 25px 20px;
  }
  .hero h1 {
    font-size: 39px;
  }
  .lead {
    font-size: 17px;
  }
  .facts,
  .snippet-grid,
  .promo-list {
    grid-template-columns: 1fr;
  }
  .footer-products,
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
  .footer-products a {
    text-align: left;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .section {
    padding: 28px 18px;
  }
  .actions .btn {
    width: 100%;
  }
}

.logo img {
  display: block;
  max-height: 58px;
  width: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), #ff9c1a);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  border: 0;
  box-shadow: 0 9px 22px rgba(255, 106, 25, 0.24);
  cursor: pointer;
  font: inherit;
  line-height: 1.2;
}
.button:hover {
  color: #fff;
}

body > header,
body > section.section,
body > footer {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}
body > section.section {
  margin-top: 22px;
  margin-bottom: 22px;
}
body > section.section[data-layout~="anchors-wrapper"] {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
body > section.section[data-layout~="hero"] {
  padding: clamp(28px, 5vw, 62px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 36px;
  background: linear-gradient(130deg, #101522 0, #0b1c35 62%, #123765 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
body > section.section[data-layout~="facts"] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 900px) {
  body > section.section[data-layout~="facts"] {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  body > header,
  body > section.section,
  body > footer {
    width: min(100% - 20px, 1180px);
  }
  body > section.section[data-layout~="facts"] {
    grid-template-columns: 1fr;
  }
}
