:root {
  --nav-bg: #0c4361;
  --nav-bg-2: #0a3750;
  --site-bg: #19918f;
  --site-bg-2: #147a78;
  --btn-red: #b41c0a;
  --btn-red-2: #921609;
  --btn-blue: #0756d0;
  --btn-blue-2: #0645a8;
  --ink-light: #f4fbfb;
  --ink-dim: #cfe6e5;
  --ink-dark: #0c2a30;
  --gold: #ffce3a;
  --green-pin: #2fbf6a;
  --yellow-pin: #f5c518;
  --red-pin: #e63b2e;
  --card: rgba(9, 42, 61, 0.3);
  --card-ink: #ffffff;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(4, 30, 34, 0.28);
  --shadow-sm: 0 4px 14px rgba(4, 30, 34, 0.22);
  --maxw: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family:
    "Nunito",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: linear-gradient(180deg, var(--site-bg) 0%, var(--site-bg-2) 100%);
  background-attachment: fixed;
  color: var(--ink-light);
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
}

body.fixed {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

a:hover {
  color: #fff;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 16px;
}

.box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 20px;
  margin: 16px 0;
  box-shadow: var(--shadow-sm);
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.mt1 {
  margin-top: 12px;
}
.mb1 {
  margin-bottom: 12px;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.muted {
  color: var(--ink-dim);
}
.hidden-a11y {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  text-align: center;
  line-height: 1;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
  color: #fff;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  color: #fff;
  filter: brightness(1.06);
  box-shadow: var(--shadow);
}

.btn:active {
  transform: translateY(0);
}

.btn--sm {
  padding: 8px 16px;
  font-size: 13px;
}
.btn--md {
  padding: 12px 22px;
  font-size: 15px;
}
.btn--lg {
  padding: 16px 34px;
  font-size: 18px;
}
.btn--block {
  display: flex;
  width: 100%;
}

.btn--blue {
  background: linear-gradient(
    180deg,
    var(--btn-blue) 0%,
    var(--btn-blue-2) 100%
  );
}
.btn--red {
  background: linear-gradient(180deg, var(--btn-red) 0%, var(--btn-red-2) 100%);
}
.btn--bonus {
  background: linear-gradient(180deg, #ffb020 0%, #e8890a 100%);
  color: #2a1400;
}
.btn--bonus:hover {
  color: #2a1400;
}
.btn--ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.pulse-fx {
  animation: pulseGlow 2.2s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(7, 86, 208, 0.55);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(7, 86, 208, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.header {
  background: linear-gradient(180deg, var(--nav-bg) 0%, var(--nav-bg-2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--ink-light);
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 10px 16px;
}

.hdr-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo img {
  height: 46px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
}

.nav-list a {
  color: var(--ink-light);
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-list a:hover {
  color: var(--gold);
}

.nav-ic {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: none;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink-light);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.winbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.22);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 700;
  overflow: hidden;
}
.winbar .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-pin);
  box-shadow: 0 0 8px var(--green-pin);
  flex: none;
  animation: blink 1.4s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
.winbar .wb-name {
  color: var(--gold);
}
.winbar .wb-sum {
  color: #7ff0a6;
}
.winbar .wb-fade {
  animation: fadeSwap 0.5s ease;
}
@keyframes fadeSwap {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 16px 0;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(12, 67, 97, 0.92) 0%,
    rgba(12, 67, 97, 0.55) 55%,
    rgba(12, 67, 97, 0.2) 100%
  );
  z-index: -1;
}
.hero-inner {
  padding: 54px 30px;
  max-width: 640px;
}
.hero h1,
.hero .hero-h1 {
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 14px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.4);
}
.hero p {
  font-size: 18px;
  color: var(--ink-dim);
  margin-bottom: 22px;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.stars {
  display: inline-flex;
  gap: 2px;
}
.stars svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
}
.rate-num {
  font-weight: 900;
  font-size: 20px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.block-title {
  font-size: clamp(22px, 3.4vw, 30px);
  font-weight: 900;
  margin-bottom: 6px;
  color: #fff;
}
.block-sub {
  color: var(--ink-dim);
  margin-bottom: 18px;
  max-width: 760px;
}

.demo-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: stretch;
}
.demo-frame {
  flex: 1 1 420px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.frame-shell {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.16);
  background: #06232b;
  aspect-ratio: 16 / 10;
}
.frame-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.demo-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.details-card {
  flex: 1 1 340px;
  min-width: 280px;
  background: var(--card);
  color: var(--card-ink);
  border-radius: var(--radius);
  padding: 6px 6px 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.details-card h3 {
  padding: 14px 14px 8px;
  font-size: 18px;
  color: #fff;
}
.tbl-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
table.gdetails {
  border-collapse: collapse;
  width: 100%;
  margin: 0 auto;
}
table.gdetails th,
table.gdetails td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--clr-line);
  font-size: 14px;
  vertical-align: top;
}
table.gdetails th {
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
  width: 42%;
}
table.gdetails tr:nth-child(even) td,
table.gdetails tr:nth-child(even) th {
  background: rgba(255, 255, 255, 0.04);
}
.gd-ic {
  width: 16px;
  height: 16px;
  fill: var(--clr-gold);
  vertical-align: -2px;
  margin-right: 7px;
}

.app-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.phone {
  flex: 0 0 auto;
  width: 250px;
  max-width: 62vw;
  margin: 0 auto;
  border: 10px solid #0a2b34;
  border-radius: 34px;
  background: #0a2b34;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.phone::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 2;
}
.phone img {
  border-radius: 24px;
}
.app-info {
  flex: 1 1 320px;
  min-width: 280px;
}
.app-info table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.app-info th,
.app-info td {
  padding: 9px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}
.app-info th {
  color: var(--gold);
  white-space: nowrap;
}
.store-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.store-ic {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}
.feat-tile {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 22px 18px;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.feat-tile:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
}
.feat-ic-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--btn-blue), #0a3a8f);
  margin-bottom: 14px;
}
.feat-ic {
  width: 28px;
  height: 28px;
  fill: #fff;
}
.feat-tile h3 {
  font-size: 18px;
  margin-bottom: 6px;
}
.feat-tile p {
  color: var(--ink-dim);
  font-size: 14px;
}

.ladder-card {
  background: var(--card);
  color: var(--card-ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
table.ladder {
  border-collapse: collapse;
  width: 100%;
}
table.ladder th,
table.ladder td {
  text-align: left;
  padding: 11px 16px;
  border-bottom: 1px solid var(--clr-line);
  font-size: 14px;
}
table.ladder thead th {
  background: rgba(12, 67, 97, 0.8);
  color: #fff;
  position: sticky;
  top: 0;
}
table.ladder tbody tr:hover td {
  background: rgba(255, 255, 255, 0.06);
}
.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-weight: 900;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.rank-1 {
  background: linear-gradient(135deg, #ffd93b, #f0a500);
  color: #3a2600;
}
.rank-2 {
  background: linear-gradient(135deg, #d7dee2, #a9b6bc);
  color: #23343a;
}
.rank-3 {
  background: linear-gradient(135deg, #e6a86b, #c9803f);
  color: #3a2000;
}
.win-amt {
  font-weight: 800;
  color: #148a4a;
}
.ladder-scroll {
  max-height: 520px;
  overflow-y: auto;
}

.video-shell {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 3px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}
.video-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.review-body {
  background: rgba(9, 42, 61, 0.3);
  color: var(--clr-white);
  border-radius: var(--radius);
  padding: 26px 26px 30px;
  box-shadow: var(--shadow-sm);
}
.review-body h1,
.review-body h2,
.review-body h3,
.review-body h4 {
  color: #fff;
  line-height: 1.25;
  margin: 22px 0 10px;
}
.review-body h1 {
  font-size: 28px;
}
.review-body h2 {
  font-size: 23px;
}
.review-body h3 {
  font-size: 19px;
}
.review-body p {
  margin: 0 0 14px;
}
.review-body a {
  color: #ffd9d2;
  font-weight: 700;
  text-decoration: underline;
}
.review-body a:hover {
  color: #fff;
}
.review-body ul,
.review-body ol {
  margin: 0 0 16px 22px;
  padding-left: 6px;
}
.review-body li {
  margin-bottom: 7px;
}
.review-body blockquote {
  border-left: 4px solid var(--clr-gold);
  background: rgba(255, 255, 255, 0.06);
  padding: 12px 18px;
  margin: 0 0 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
}
.review-body img {
  border-radius: var(--radius-sm);
  margin: 10px 0;
}
.review-body table {
  border-collapse: collapse;
  width: 100%;
  margin: 0 auto 18px;
  overflow: hidden;
  background: rgba(9, 42, 61, 0.4);
  border-radius: 10px;
}
.review-body th,
.review-body td {
  border: 1px solid var(--clr-line);
  padding: 10px 14px;
  text-align: left;
  font-size: 14px;
}
.review-body th {
  background: rgba(12, 67, 97, 0.8);
  color: #fff;
  font-weight: 800;
}
.review-body tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.04);
}
.review-body code {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 5px;
  font-family: "Nunito", monospace;
  font-size: 13px;
}
.review-body hr {
  border: 0;
  border-top: 1px solid var(--clr-line);
  margin: 22px 0;
}

.faq-item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--ink-light);
  font-family: inherit;
  font-weight: 800;
  font-size: 16px;
  padding: 16px 46px 16px 18px;
  cursor: pointer;
  position: relative;
}
.faq-q::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  transition: transform 0.25s ease;
}
.faq-item.open .faq-q::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--ink-dim);
}
.faq-a p {
  padding: 0 18px 16px;
}

.author-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 22px;
}
.author-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  border: 3px solid var(--gold);
  background: linear-gradient(135deg, var(--btn-blue), var(--nav-bg));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 900;
  color: #fff;
}
.author-meta {
  flex: 1 1 260px;
}
.author-meta h3 {
  font-size: 20px;
  margin-bottom: 2px;
}
.author-role {
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.author-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 14px;
  color: var(--ink-dim);
  margin-bottom: 12px;
}
.author-facts span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.author-socials {
  display: flex;
  gap: 10px;
}
.author-socials a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.author-socials svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.footer {
  background: linear-gradient(180deg, var(--nav-bg) 0%, var(--nav-bg-2) 100%);
  border-top: 3px solid var(--btn-blue);
  color: var(--ink-dim);
  margin-top: auto;
  padding: 30px 16px 20px;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: space-between;
}
.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
}
.footer-col h4 {
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 8px;
}
.footer-col a {
  color: var(--ink-dim);
  font-weight: 600;
}
.footer-col a:hover {
  color: var(--gold);
}
.foot-logo img {
  height: 44px;
  margin-bottom: 12px;
}
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.trust-badge {
  background: rgba(255, 255, 255, 0.9);
  color: #0c2a30;
  font-weight: 800;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 6px;
  letter-spacing: 0.03em;
}
.pay-badge {
  background: #fff;
  color: #0c2a30;
  font-weight: 800;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 6px;
}
.age-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #ff5a4d;
  color: #ff5a4d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 13px;
}
.flag-au {
  width: 40px;
  height: 26px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 22px;
  padding-top: 16px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-dim);
}
.soc-foot {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.soc-foot a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.soc-foot svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.sticky-widget {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--nav-bg), #072b3f);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  max-width: calc(100vw - 32px);
  transform: translateY(140%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sticky-widget.show {
  transform: none;
}
.sw-logo img {
  height: 42px;
}
.sw-txt {
  line-height: 1.2;
}
.sw-txt strong {
  display: block;
  color: var(--gold);
  font-size: 15px;
}
.sw-txt span {
  font-size: 12px;
  color: var(--ink-dim);
}
.sw-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: var(--btn-red);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  line-height: 1;
}

.crumbs {
  font-size: 13px;
  color: #cdeeed;
  margin: 10px 0 4px;
}
.crumbs a {
  color: var(--clr-gold, #ffd34e);
  text-decoration: underline;
}

.marquee-unused {
  display: none;
  white-space: nowrap;
  animation: scrollx 18s linear infinite;
}
@keyframes scrollx {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.legacy-tooltip-3f8a {
  position: relative;
  display: none;
}
.skeleton-shimmer-x92 {
  display: none;
  background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}

@media (max-width: 900px) {
  .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(84vw, 340px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    background: linear-gradient(180deg, var(--nav-bg), #072535);
    padding: 80px 24px 24px;
    transform: translateX(110%);
    transition: transform 0.35s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
    z-index: 70;
    overflow-y: auto;
  }
  .header-nav.active {
    transform: none;
  }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
  }
  .nav-list li {
    width: 100%;
  }
  .nav-list a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 17px;
  }
  .burger {
    display: flex;
  }
  .hdr-actions-mobile {
    display: flex;
    gap: 8px;
  }
}

@media (min-width: 901px) {
  .header-nav .header-buttons.in-drawer {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero-inner {
    padding: 34px 20px;
  }
  .box {
    padding: 16px;
  }
  .btn--lg {
    padding: 14px 24px;
    font-size: 16px;
  }
  .logo img {
    height: 38px;
  }
  .header-buttons .btn span.lbl-long {
    display: none;
  }
}
