*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: var(--color-green-btn);
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

:root {
  --text-primary: #ffffff;
  --text-link: #ffffff;

  --font-montserrat: 'Cairo', sans-serif;

  --text-link-after: #c6e04a;

  --bg-primary: #134152;
  --bg-secondary: #0f3544;
  --header-bg: #0c2b38;
  
  --color-blue-btn: #1c7d94;
  --color-blue-btn-hover: #2493ad;
  --color-red-btn: #f23e71;
  --color-red-btn-hover: #ef2019;
  --color-green-btn: #c6e04a;
  --color-green-btn-hover: #d5ed63;
  --color-white: #fff;
  --color-blue: #1c7d94;

  --main-accent-bg-color: #c6e04a;

  --table-bg: #e5e5e5;
  --table-border: #c0c0c0;

  --header-offset: 68px;
}

html,
body {
  height: 100%;
  line-height: 1;
  font-size: 16px;
  color: var(--color-white);
  font-weight: 400;
  font-family: var(--font-montserrat), sans-serif;
  font-feature-settings: "pnum" on, "lnum" on;
  background: var(--bg-primary);
  position: relative;
}

html {
  scroll-behavior: smooth;
}

/* ---------------------------------------- */

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

._container {
  max-width: 1410px;
  padding: 0px 15px;
  margin: 0 auto;
  box-sizing: content-box;
}




.header {
  background: var(--header-bg);
  border-bottom: 1px solid rgba(198, 224, 74, 0.16);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.header__container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.header__body {
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
  position: relative;
}

@media (max-width: 1243px) {
  .header__body {
    flex-wrap: wrap;
    text-align: center;
  }
  .header__actions {
    align-items: center;
    justify-content: center;
  }
}

.header__logo-img {
  max-height: 35px;
  height: auto;
  width: auto;
  object-fit: contain;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__list {
  display: flex;
  height: 100%;
  list-style: none;
  gap: 16px;
  align-items: center;
}

.header__link {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  height: 100%;
  padding-bottom: 4px;
}

.header__link::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--text-link-after);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 250ms ease-in-out;
}



.header__actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Get App — белая */
.header__app {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 12px;
  background: var(--color-green-btn);
  color: #13100c;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(198, 224, 74, 0.35);
  transition: all 0.2s ease;
}

.header__app:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(198, 224, 74, 0.45);
  background: var(--color-green-btn-hover);
  color: #13100c;
}

.header__app:active {
  transform: translateY(0);
}


/* ===== LOGIN — синий плоский как на скрине ===== */
.header__login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 12px;
  background: var(--color-blue-btn);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
}

.header__login:hover {
  background: var(--color-blue-btn-hover);
}


/* ===== REGISTER — фирменный 1xBet зелёный ===== */
.header__sign {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 12px;
  background: var(--color-green-btn);
  color: #13100c;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s ease;
}

.header__sign:hover {
  background: var(--color-green-btn-hover);
}




/* Breadcrumbs */

.breadcrumbs {
  padding: 0.5rem 0;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(198, 224, 74, 0.16);
}

/* Убирает чёрную полосу body между fixed-header и крошками */
.header + .breadcrumbs {
  margin-top: calc(-1 * var(--header-offset));
  padding-top: calc(var(--header-offset) + 0.5rem);
}

.breadcrumbs__list {
  list-style: none;
  margin: 0;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
}

.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
}

.breadcrumbs__current,
.breadcrumbs__link {
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.breadcrumbs__link:hover {
  color: var(--color-green-btn);
}

.breadcrumbs__separator {
  color: rgba(255, 255, 255, 0.45);
  user-select: none;
}

.breadcrumbs__current {
  color: var(--color-green-btn);
  font-weight: 600;
}

/*       Hero        */

.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  background:
    #111111,
    radial-gradient(120% 90% at 100% 0%, rgba(45, 140, 255, 0.2) 0%, rgba(45, 140, 255, 0) 55%),
    radial-gradient(80% 70% at 0% 20%, rgba(45, 140, 255, 0.14) 0%, rgba(45, 140, 255, 0) 60%),
    linear-gradient(145deg, #1e3a5f 0%, #16324f 58%, #132d47 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  background:
    radial-gradient(45% 35% at 25% 75%, rgba(111, 207, 0, 0.07), transparent 70%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 3px);
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
}

.hero__content {
  max-width: 670px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.hero__title {
  font-size: 34px;
  line-height: 1.35;
  font-weight: 700;
}

.hero__text {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
}

.hero__image {
  max-width: 670px;
  width: 100%;
  text-align: center;
}

.hero__img {
  max-width: 600px;
  width: 100%;
}

@media (max-width: 1024px) {
  .hero__content {
    max-width: 100%;
  }
  .hero__image {
    display: block;
    max-width: min(100%, 400px);
    margin: 0 auto;
  }
  .hero__image--card {
    flex: 0 0 auto;
    width: 100%;
    max-width: min(100%, 400px);
  }
  .hero__body {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .hero__img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  .hero__img--large {
    min-height: 0;
    max-width: min(100%, 400px);
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
  }
}

@media (max-width: 500px) {
  .hero__image {
    max-width: 100%;
  }
}

/* Hero promo block */
.mp-promocode {
  background: linear-gradient(160deg, #245c8c 0%, #1d4d78 55%, #1a446a 100%);
  border-radius: 12px;
  padding: 24px 18px 22px;
  max-width: 700px;
  box-sizing: border-box;
  color: #ffffff;
  border: 1.25px solid rgba(198, 224, 74, 0.22);
}

.mp-promocode__title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 14px;
}

.mp-promocode__specs {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  column-gap: 60px;
  list-style: none;
  padding: 0;
  max-width: 430px;
  margin: 0 auto 22px;
  border-bottom: 1px solid rgba(39, 106, 165, 0.45);
  padding-bottom: 14px;
}

.mp-promocode__specs-item {
  text-align: center;
}

.mp-promocode__specs-value {
  display: block;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 4px;
  direction: ltr;
}

.mp-promocode__specs-name {
  display: block;
  font-size: 11px;
  line-height: 1.3;
  opacity: 0.7;
}

.mp-promocode__buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.mp-promocode .btn--green,
.mp-promocode__link.btn--green,
.mp-promocode button.mp-promocode__link {
  flex: 1;
  border-radius: 10px;
  background: var(--color-green-btn);
  color: #13100c;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
  transition: transform 0.12s ease, background 0.12s ease;
  text-decoration: none;
}

.mp-promocode .btn--green:hover,
.mp-promocode__link.btn--green:hover {
  background: var(--color-green-btn-hover);
  transform: scale(0.98);
}

.mp-promocode .btn--green:active,
.mp-promocode__link.btn--green:active {
  transform: scale(0.96);
}

.mp-promocode .btn--green svg {
  flex-shrink: 0;
}

.btn--full-width {
  width: 100%;
}

.btn--with-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mp-promocode__description {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
}

.mp-promocode__input {
  margin-top: 4px;
}

.mp-promocode__input-copy-block {
  display: flex;
  align-items: stretch;
  border-radius: 10px;
  overflow: hidden;
  background: #1a446a;
  border: 1px solid rgba(39, 106, 165, 0.55);
}

.mp-promocode__input-copy-block label {
  flex: 1;
  display: flex;
}

.mp-promocode__input-copy-block input {
  width: 100%;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  padding: 14px 12px;
  letter-spacing: 1px;
}

.mp-promocode__copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 18px;
  border: none;
  background: var(--color-green-btn);
  color: #13100c;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
}

.mp-promocode__copy-btn svg {
  flex-shrink: 0;
}

.mp-promocode__copy-btn .copied {
  display: none;
}

@media (max-width: 768px) {
  .mp-promocode__buttons {
    flex-direction: column;
    gap: 12px;
  }

  .mp-promocode .btn--green,
  .mp-promocode__link.btn--green,
  .mp-promocode button.mp-promocode__link {
    width: 100%;
    flex: none;
    white-space: normal;
  }
}

@media (max-width: 600px) {
  .mp-promocode {
    padding: 20px 14px 20px;
  }

  .mp-promocode__specs {
    column-gap: 16px;
    padding-bottom: 12px;
    margin-bottom: 18px;
  }

  .mp-promocode__specs-value {
    font-size: 13px;
  }

  .mp-promocode__specs-name {
    font-size: 10px;
  }

  .mp-promocode__description {
    font-size: 12px;
  }

  .mp-promocode .btn--green,
  .mp-promocode__link.btn--green,
  .mp-promocode button.mp-promocode__link {
    font-size: 14px;
    padding: 13px 14px;
  }
}

.block-table {
  width: 100%;
  margin-top: 1rem;
  overflow-x: auto;
  border-radius: 18px;
  background: linear-gradient(180deg, #1a5f72 0%, #144b5a 100%);
  border: 1px solid rgba(198, 224, 74, 0.6);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.block-table table,
.columns__container > table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: #e8f2ff;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
  line-height: 1.5;
}

.block-table table th,
.block-table table td,
.columns__container > table th,
.columns__container > table td {
  border: none;
  padding: 0.95rem 1.15rem;
  vertical-align: middle;
}

.block-table table thead th,
.columns__container > table thead th {
  background: rgba(198, 224, 74, 0.12);
  color: #ffffff;
  font-weight: 800;
  border-bottom: 1px solid rgba(198, 224, 74, 0.28);
}

.block-table table thead th:first-child {
  border-top-right-radius: 18px;
}

.block-table table thead th:last-child {
  border-top-left-radius: 18px;
}

.block-table table tbody td,
.columns__container > table tbody td {
  color: #e4edf8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.block-table table tbody td:first-child {
  width: 28%;
  color: var(--color-green-btn);
  font-weight: 700;
  white-space: nowrap;
}

.block-table table tbody tr:last-child td,
.columns__container > table tbody tr:last-child td {
  border-bottom: none;
}

.block-table table tbody tr,
.columns__container > table tbody tr {
  transition: background-color 0.24s ease;
}

.block-table table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.025);
}

.block-table table tbody tr:hover,
.columns__container > table tbody tr:hover {
  background: rgba(198, 224, 74, 0.08);
}

/* FAQ accordion */
.faq-item {
  border: 1.25px solid rgba(198, 224, 74, 0.22);
  border-radius: 14px;
  background: linear-gradient(155deg, #1a5c6e 0%, #144656 100%);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item.is-open {
  border-color: rgba(198, 224, 74, 0.6);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  color: #ffffff;
  text-align: right;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.faq-icon {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border-left: 2px solid var(--color-green-btn);
  border-bottom: 2px solid var(--color-green-btn);
  transform: rotate(-45deg);
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 20px 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
  line-height: 1.75;
}

.block-table table td.is-positive,
.block-table table td[data-positive="true"],
.columns__container > table td.is-positive,
.columns__container > table td[data-positive="true"] {
  color: #6fcf00;
  font-weight: 600;
}

@media (max-width: 768px) {
  .block-table {
    border-radius: 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
  }

  .columns__container {
    overflow-x: visible;
    overflow-y: visible;
  }

  .block-table table,
  .columns__container > table {
    min-width: 720px;
  }

  .block-table table th,
  .block-table table td,
  .columns__container > table th,
  .columns__container > table td {
    padding: 0.78rem 0.9rem;
    font-size: 0.94rem;
  }

  .block-table table tbody td:first-child {
    width: 30%;
  }
}

/* Footer */

.footer {
  background: var(--header-bg);
  padding: 2rem 0;
}
.footer__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: start;
}
.footer__copy {
  margin: 0.65rem 0 0.45rem;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.68;
  color: #ffffff;
}

.footer__copy:last-child {
  margin-bottom: 0;
  margin-top: 0.75rem;
}

.footer__notice {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.footer__copyright {
  margin-top: 0.55rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
}
.footer__secure {
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
}
.footer__heading {
  color: #ffffff;
}
.footer__list {
  margin-top: 0.65rem;
  list-style: none;
}
.footer__item {
}
.footer__link {
  font-size: 0.98rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.65rem;
  transition: all 0.3s ease;
}

.footer__link:hover {
  text-decoration: none;
}

.footer__socials {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer__social {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 1;
  transition: all 0.3s ease;
}

.footer__social:hover {
  opacity: 0.7;
}

.footer__social img {
  width: 30px;
  height: 30px;
}

@media (max-width: 900px) {
  .footer__body {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }
  .footer__logo-img {
    max-width: 300px;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 700px) {
  .footer__socials {
    display: none;
  }
  .footer {
    background: var(--header-bg);
    padding: 3rem 0 0rem 0;
  }
}

.scroll-top {
  position: fixed;
  bottom: 70px;
  right: 15px;
  z-index: 99;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.scroll-top.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.scroll-top.is-hidden .scroll-top__button {
  display: none;
}

@media (max-width: 700px) {
  .scroll-top {
    bottom: 82px;
    left: 12px;
    right: auto;
  }
}

.scroll-top__button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  background-color: var(--main-accent-bg-color);
  color: var(--color-white);
  text-shadow: 1px 1px 2px #000;
  font-size: 20px;
}

.mobile-button {
  display: none;
  position: fixed;
  bottom: 0;
  left: 8px;
  right: 8px;
  text-align: center;
  padding: 12px 12px;
  border-radius: 16px 16px 0 0;
  width: auto;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(198, 224, 74, 0.22);
  border-bottom: none;
  box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.14);
  align-items: center;
  gap: 12px 10px;
  z-index: 100;
  overflow: hidden;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.mobile-button.is-hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.mobile-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-green-btn),
    var(--color-green-btn-hover),
    var(--color-green-btn)
  );
}
.mobile-button a:not(.mobile-button__link) {
  font-weight: 400;
  font-size: 1.2rem;
}
.mobile-button__container {
  padding: 10px 1rem;
}
.mobile-button__control {
  display: block;
  width: 100%;
}

@media (max-width: 700px) {
  .mobile-button {
    display: flex;
  }
}

.mobile-button.v1 .get-image {
  width: 80px;
  height: 40px;
}

.mobile-button.v1 img {
  max-width: 65px;
  max-height: 14px;
}

.mobile-button > .get-image {
  border-radius: 10px;
  background: linear-gradient(145deg, #2a2620, #13100c);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 60px;
  height: 42px;
  border: 1px solid rgba(198, 224, 74, 0.28);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mobile-button img {
  max-width: 50px;
  max-height: 12px;
  width: 100%;
  object-fit: contain;
}

.mobile-button__title {
  margin: 0;
  color: #13100c;
  font-size: 15px;
  font-weight: 800;
  line-height: 16px;
  text-align: left;
  letter-spacing: 0.2px;
}

.mobile-button__rating {
  --percent: calc(var(--star-rating) / 5 * 100%);
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1;
  margin-top: 6px;
}

.mobile-button__rating::before {
  content: "★★★★★";
  font-family: Times, serif;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(
    90deg,
    #7daa2f var(--percent),
    #828282 var(--percent)
  );
  -webkit-background-clip: text;
}

.mobile-button__rating-counter {
  margin-left: 4px;
  color: #7daa2f;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  transform: translateY(-1px);
}

.mobile-button__link {
  position: relative;
  margin: 0;
  border: none;
  display: inline-flex;
  padding: 12px 22px;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  text-decoration: none;
  white-space: nowrap;
  flex: 0 0 auto;
  min-width: 112px;
  background: linear-gradient(
    135deg,
    var(--color-green-btn-hover) 0%,
    var(--color-green-btn) 55%,
    #a8c43a 100%
  );
  color: #13100c;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(198, 224, 74, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  animation: mobile-button-pulse 2.4s ease-in-out infinite;
}

.mobile-button a.mobile-button__link {
  color: #13100c;
  font-size: 14px;
  font-weight: 800;
}

.mobile-button__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.65),
    transparent
  );
  transform: skewX(-20deg);
  animation: mobile-button-shine 3s ease-in-out infinite;
}

.mobile-button__link:hover {
  background: linear-gradient(
    135deg,
    var(--color-green-btn-hover) 0%,
    var(--color-green-btn) 55%,
    #6f9e2a 100%
  );
  color: #13100c;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(198, 224, 74, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.mobile-button__link:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(198, 224, 74, 0.4);
}

@keyframes mobile-button-pulse {
  0%, 100% {
    box-shadow: 0 6px 16px rgba(198, 224, 74, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  }
  50% {
    box-shadow: 0 6px 22px rgba(198, 224, 74, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  }
}

@keyframes mobile-button-shine {
  0% {
    left: -120%;
  }
  60%, 100% {
    left: 140%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-button__link {
    animation: none;
  }
  .mobile-button__link::before {
    animation: none;
  }
}

.mobile-button__link--show {
  margin-right: -8px;
  transition: none;
  transition: background-color 0.3s ease-in-out;
}

.mobile-button__link--show .close {
  display: none;
}

.mobile-button__link--show._active .close {
  display: flex;
}
.mobile-button__link--show._active {
  background-color: rgba(198, 224, 74, 0.16);
  margin-right: 0;
}

.mobile-button__link--show._active .open {
  display: none;
}

/* PRIVACY PAGE */

.privacy__title {
  margin-top: 2.15rem;
  font-size: 1.55rem;
  line-height: 1.45;
  font-weight: 700;
  color: #ffffff;
}

.privacy__subtitle {
  margin: 1.45rem 0 0.4rem;
  font-size: 1.18rem;
  line-height: 1.5;
  font-weight: 700;
  color: #ffffff;
}

.privacy__text {
  margin-top: 0.95rem;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.85;
}

.privacy__list {
  margin: 0.85rem 0 0;
  padding-right: 1.35rem;
  padding-left: 0;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.8;
}

.privacy__list li {
  margin-bottom: 0.5rem;
}

.privacy-toc {
  margin: 1.4rem 0 1.9rem;
  padding: 18px 20px 16px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(198, 224, 74, 0.22);
}

.privacy-toc__title {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #d4ed7a;
}

.privacy-toc ol {
  margin: 0;
  padding-right: 1.3rem;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.9;
}

.privacy-toc a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.privacy-toc a:hover {
  color: var(--color-green-btn);
  text-decoration: underline;
}


.privacy-content {
  padding-top: 1rem;
  padding-bottom: 3rem;
}

.privacy__container {
  width: 100%;
}

.header--legal .header__body {
  justify-content: space-between;
}

.privacy-hero__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  line-height: 1.3;
  font-weight: 800;
  color: #ffffff;
}

.privacy-hero__text {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.8;
}

.privacy-hero__text b {
  color: var(--color-green-btn);
  font-weight: 700;
}

.privacy__link {
  color: var(--color-blue);
  text-decoration: underline;
}






/* ============================================================ */
/*  FIXED HEADER                                                 */
/* ============================================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header.is-scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

body {
  padding-top: var(--header-offset);
}

html {
  scroll-padding-top: calc(var(--header-offset) + 12px);
}


/* ============================================================ */
/*  ARABIC / RTL OVERRIDES                                       */
/* ============================================================ */

html[dir="rtl"],
html[dir="rtl"] body {
  font-family: 'Cairo', sans-serif;
  text-align: right;
}

html[dir="rtl"] .hero__title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.35;
  font-weight: 700;
}

html[dir="rtl"] .hero__text {
  font-size: 1.05rem;
  line-height: 1.75;
}

html[dir="rtl"] .section-title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1.35;
  font-weight: 700;
}

html[dir="rtl"] .columns__container p {
  font-size: 1.05rem;
  line-height: 1.8;
}

html[dir="rtl"] .columns__container h3 {
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 700;
}

/* RTL numbered list */
/* RTL table alignment */
html[dir="rtl"] .block-table table thead th,
html[dir="rtl"] .columns__container > table thead th {
  text-align: right;
}

/* RTL promo card alignment */
/* Fix mobile button text alignment in RTL */
html[dir="rtl"] .mobile-button__title {
  text-align: right;
}

/* RTL promo block */
@media (max-width: 600px) {
  html[dir="rtl"] .mp-promocode__specs {
    column-gap: 16px;
  }
}


/* ============================================================ */
/*  INFO STRIP (under hero)                                      */
/* ============================================================ */

.info-strip {
  background: linear-gradient(
    90deg,
    rgba(198, 224, 74, 0.05),
    rgba(198, 224, 74, 0.1),
    rgba(198, 224, 74, 0.05)
  );
  border-top: 1px solid rgba(198, 224, 74, 0.14);
  border-bottom: 1px solid rgba(198, 224, 74, 0.14);
  padding: 14px 0;
}

.info-strip__items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.info-strip__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(198, 224, 74, 0.08);
  border: 1px solid rgba(198, 224, 74, 0.18);
  color: var(--color-green-btn);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.info-strip__icon {
  flex: 0 0 auto;
  color: var(--color-green-btn);
}

@media (max-width: 600px) {
  .info-strip {
    padding: 12px 0;
  }

  .info-strip__items {
    gap: 10px;
  }

  .info-strip__badge {
    min-height: 32px;
    padding: 7px 11px;
    font-size: 13px;
    gap: 6px;
  }

  .info-strip__icon {
    width: 14px;
    height: 14px;
  }
}


/* ============================================================ */
/*  GENERAL TYPOGRAPHY & SPACING IMPROVEMENTS                    */
/* ============================================================ */

/* Better vertical rhythm for section wrappers */
.section-title {
  text-align: start;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1.35;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.section-title--start {
  text-align: start;
}

.columns__container p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #ffffff;
  margin-bottom: 1.35rem;
}

.columns__container h3 {
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 700;
  color: #ffffff;
  margin: 1.5rem 0 0.75rem;
}

.columns__container ol,
.columns__container ul {
  margin: 0.75rem 0 1rem;
  padding-right: 1.25rem;
  color: #ffffff;
}

.columns__btn-row {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}


.section-wrapper {
  margin: 4.75rem 0;
  padding: 0.75rem 0;
}

/* CTA download button */
.columns__download {
  border: none;
  cursor: pointer;
  border-radius: 12px;
  font-size: 1.1rem;
  padding: 14px 40px;
  font-weight: 700;
  letter-spacing: 0.3px;
  background-color: var(--color-green-btn);
  color: #13100c;
  box-shadow: 0 6px 18px rgba(198, 224, 74, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.columns__download:hover {
  transform: translateY(-2px);
  background-color: var(--color-green-btn-hover);
  box-shadow: 0 10px 24px rgba(198, 224, 74, 0.45);
  color: #13100c;
}

.columns__download:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .header__container {
    padding: 0 12px;
  }

  .header__body {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 7px 0;
  }

  .header__logo {
    flex: 0 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
  }

  .header__logo-img {
    max-height: 32px;
    max-width: 125px;
    width: auto;
  }

  .header__actions {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 7px;
    justify-content: flex-end;
  }

  .header__login,
  .header__app,
  .header__sign {
    display: inline-flex;
    flex: 1 1 0;
    min-width: 0;
    max-width: 45%;
    padding: 8px 9px;
    border-radius: 9px;
    font-size: 11px;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
  }

  .header__login {
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(198, 224, 74, 0.28);
    box-shadow: none;
  }

  .header__app {
    box-shadow: 0 3px 10px rgba(198, 224, 74, 0.4);
  }

  :root {
    --header-offset: 54px;
  }
}

@media (max-width: 380px) {
  .header__logo-img {
    max-width: 100px;
    max-height: 28px;
  }

  .header__login,
  .header__app,
  .header__sign {
    padding: 7px 7px;
    font-size: 10.5px;
  }

  .header__actions {
    gap: 6px;
  }
}

/* Improve section spacing on mobile */
@media (max-width: 768px) {
  .section-wrapper {
    margin: 3.25rem 0;
    padding: 0.5rem 0;
  }

}

.apk-steps {
  list-style: none;
  margin: 40px auto 0;
  padding: 0;
  counter-reset: apk-step;
  touch-action: pan-y;
  overflow: visible;
}

.apk-step {
  position: relative;
  margin: 0 0 72px;
  padding-top: 28px;
  touch-action: pan-y;
}

.apk-step::before {
  counter-increment: apk-step;
  content: counter(apk-step);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--color-green-btn-hover), var(--color-green-btn));
  color: #13100c;
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(198, 224, 74, 0.45), 0 0 0 4px var(--bg-primary);
  z-index: 2;
  pointer-events: none;
}

.apk-step:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -48px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 32px;
  background: linear-gradient(180deg, rgba(198, 224, 74, 0.6), rgba(198, 224, 74, 0.1));
  border-radius: 2px;
  pointer-events: none;
}

.apk-step__inner {
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  background: linear-gradient(155deg, #1a5f72 0%, #144b5a 100%);
  border-radius: 16px;
  border: 1px solid rgba(198, 224, 74, 0.18);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  touch-action: pan-y;
}

@media (hover: hover) and (pointer: fine) {
  .apk-step__inner {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .apk-step__inner:hover {
    transform: translateY(-3px);
    border-color: rgba(198, 224, 74, 0.32);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.42);
  }
}

.apk-step:nth-child(even) .apk-step__inner {
  flex-direction: row;
}

.apk-step__text {
  flex: 1 1 0;
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  text-align: right;
}

.apk-step__text h3 {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}

.apk-step__text p {
  margin: 0;
  max-width: 42ch;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.apk-step__image {
  flex: 0 0 38%;
  min-height: 280px;
  padding: 28px 24px;
  background: linear-gradient(
    160deg,
    var(--color-green-btn-hover) 0%,
    var(--color-green-btn) 45%,
    #a8c43a 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  touch-action: pan-y;
  border-radius: 0 16px 16px 0;
  overflow: hidden;
}

.apk-step:nth-child(even) .apk-step__image {
  border-radius: 16px 0 0 16px;
}

.apk-step__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.25), transparent 55%);
  pointer-events: none;
}

.apk-step__image img {
  position: relative;
  z-index: 1;
  max-width: min(100%, 220px);
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
  -webkit-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
  touch-action: pan-y;
  pointer-events: none;
}

@media (max-width: 900px) {
  .apk-step {
    margin-bottom: 56px;
    padding-top: 24px;
  }

  .apk-step::before {
    width: 44px;
    height: 44px;
    font-size: 17px;
  }

  .apk-step:not(:last-child)::after {
    bottom: -40px;
    height: 24px;
  }

  .apk-step__inner,
  .apk-step:nth-child(even) .apk-step__inner {
    flex-direction: column;
  }

  .apk-step__image,
  .apk-step:nth-child(even) .apk-step__image {
    border-radius: 16px 16px 0 0;
  }

  .apk-step__text {
    padding: 28px 22px 24px;
    text-align: center;
    align-items: center;
  }

  .apk-step__text p {
    max-width: none;
  }

  .apk-step__image {
    flex-basis: auto;
    min-height: 0;
    padding: 24px 20px 28px;
  }

  .apk-step__image img {
    max-width: min(72vw, 200px);
  }
}

/* ============================================================
   Mobile header navigation (burger + dropdown)
   ============================================================ */
.header__burger {
  display: none;
  flex-direction: column;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(198, 224, 74, 0.25);
  background: rgba(0, 0, 0, 0.12);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header__burger:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(198, 224, 74, 0.16);
}

.header__burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 2px;
  margin: 3px 0;
}

.main-nav {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 16px;
  padding: 10px 10px;
  border-radius: 12px;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover {
  color: var(--color-green-btn);
  background: rgba(198, 224, 74, 0.1);
  text-decoration: none;
}

@media (max-width: 768px) {
  .header__burger {
    display: inline-flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    margin: 0 12px;
    padding: 12px;
    background: rgba(29, 66, 104, 0.98);
    border: 1px solid rgba(198, 224, 74, 0.22);
    border-radius: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    z-index: 1001;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    font-size: 15px;
    padding: 12px 12px;
    background: rgba(0, 0, 0, 0.12);
  }
}

/* ============================================================
   Layout helpers: صورة + نص
   ============================================================ */
.media-row {
  display: flex;
  gap: 44px;
  align-items: stretch;
}

.media-row--airy {
  gap: 52px;
  align-items: center;
}

.media-row__text {
  flex: 1 1 0;
  min-width: 0;
}

.media-row__img-wrap {
  flex: 0 0 420px;
  max-width: 420px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.media-row__img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(198, 224, 74, 0.22);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
  background: rgba(0, 0, 0, 0.12);
}

@media (max-width: 900px) {
  .media-row {
    flex-direction: column;
    gap: 18px;
  }

  .media-row__text {
    order: 1;
  }

  .media-row__img-wrap {
    order: 2;
    flex: 0 0 auto;
    max-width: 100%;
  }

  .media-row__img {
    max-height: none;
  }

  .media-row__img--tall {
    min-height: 0;
    max-height: 240px;
    width: 100%;
    object-fit: cover;
  }
}

/* ============================================================
   Hero CTA
   ============================================================ */
.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
}

.hero__install-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 12px;
  border: 1.25px solid rgba(198, 224, 74, 0.55);
  color: #ffffff;
  background: rgba(0, 0, 0, 0.14);
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    border-color 0.15s ease;
}

.hero__install-link:hover {
  transform: translateY(-2px);
  border-color: rgba(198, 224, 74, 0.95);
  background: rgba(198, 224, 74, 0.12);
  box-shadow: 0 10px 24px rgba(198, 224, 74, 0.18);
}

/* ============================================================
   Checklists & callouts
   ============================================================ */
.checklist {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.checklist li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 3px;
  background: var(--color-green-btn);
  box-shadow: 0 0 0 3px rgba(198, 224, 74, 0.16);
  flex: 0 0 10px;
}

.callout {
  border: 1.25px solid rgba(198, 224, 74, 0.22);
  border-radius: 16px;
  padding: 18px 16px;
  background: rgba(0, 0, 0, 0.14);
  margin-top: 18px;
}

.callout strong {
  color: var(--color-green-btn);
}

.callout__title {
  font-weight: 800;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.age-box {
  border-color: rgba(242, 62, 113, 0.35);
  background: rgba(242, 62, 113, 0.09);
}

.age-box strong {
  color: #ff6aa0;
}

/* ============================================================
   Homepage rebuild
   ============================================================ */
.hero--apk {
  padding: 36px 0 44px;
}

.hero--apk .hero__content--wide {
  padding: 22px 22px 20px;
  border-radius: 20px;
  background: linear-gradient(
    160deg,
    rgba(36, 91, 139, 0.42) 0%,
    rgba(27, 71, 112, 0.22) 100%
  );
  border: 1px solid rgba(198, 224, 74, 0.16);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.hero--apk .hero__title {
  margin-bottom: 0.75rem;
}

.hero--apk .hero__text {
  margin-bottom: 0.65rem;
  line-height: 1.65;
  font-size: 16px;
}

.hero--apk .hero__text:last-of-type {
  margin-bottom: 0;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(198, 224, 74, 0.1);
  border: 1px solid rgba(198, 224, 74, 0.22);
  color: var(--color-green-btn);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.hero__image--card {
  max-width: 520px;
  flex: 0 1 520px;
  width: 100%;
}

.hero__body--split {
  gap: 36px;
  align-items: center;
}

.hero__content--wide {
  max-width: 700px;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1.1rem;
}

.hero--apk .hero__cta .columns__download {
  padding: 16px 34px;
  font-size: 1.14rem;
  min-width: 220px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(198, 224, 74, 0.42);
}

.hero-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.hero-summary__item {
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(198, 224, 74, 0.2);
  border-top: 3px solid rgba(198, 224, 74, 0.55);
}

.hero-summary__label {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  margin-bottom: 5px;
}

.hero-summary__value {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
}

.hero__img--large {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 24px;
  border: 1px solid rgba(198, 224, 74, 0.2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

main .section-wrapper {
  margin: 3rem 0;
  padding: 0.15rem 0;
}

.section-wrapper--tight {
  margin-top: 1.25rem;
}

.section-wrapper--seo {
  margin: 2.5rem 0;
}

main .section-title {
  margin-bottom: 0.9rem;
}

main .section-lead {
  margin-bottom: 1rem;
  line-height: 1.75;
  font-size: 1rem;
}

main .columns__container p {
  margin-bottom: 0.95rem;
  line-height: 1.78;
  font-size: 1.02rem;
}

.media-row--airy {
  gap: 36px;
  align-items: center;
}

.media-row__img--tall {
  min-height: 400px;
  max-height: none;
  object-fit: cover;
}

.app-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 22px;
  border-radius: 18px;
  background: linear-gradient(155deg, #1a5f72 0%, #144b5a 100%);
  border: 1px solid rgba(198, 224, 74, 0.22);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.26);
}

.app-meta__content .section-title {
  margin-bottom: 0.35rem;
}

.app-meta__content p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.app-meta__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

.app-meta__card {
  padding: 11px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(198, 224, 74, 0.14);
}

.app-meta__name {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
  margin-bottom: 4px;
}

.app-meta__value {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 18px 16px;
  border-radius: 16px;
  background: linear-gradient(155deg, #1a5f72 0%, #144b5a 100%);
  border: 1px solid rgba(198, 224, 74, 0.18);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(198, 224, 74, 0.15),
    rgba(198, 224, 74, 0.75),
    rgba(198, 224, 74, 0.15)
  );
}

.feature-card:nth-child(even) {
  background: linear-gradient(155deg, #17586a 0%, #123f4e 100%);
}

.feature-card:nth-child(3n) {
  border-color: rgba(198, 224, 74, 0.26);
}

.feature-card h3 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.4;
  font-weight: 800;
}

.feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
  line-height: 1.62;
}

main .columns__container .feature-grid {
  margin-top: 8px;
}

main .columns__container .feature-card h3 {
  margin: 0 0 7px;
  font-size: 1.08rem;
  line-height: 1.4;
  font-weight: 800;
  color: #ffffff;
}

main .columns__container .feature-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.84);
}

.seo-cta-block {
  position: relative;
  overflow: hidden;
  padding: 22px 24px 20px;
  border-radius: 18px;
  background: linear-gradient(
    155deg,
    #286499 0%,
    #1d4268 52%,
    #1a3d61 100%
  );
  border: 1px solid rgba(198, 224, 74, 0.34);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.seo-cta-block::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: var(--color-green-btn);
}

.seo-cta-block .section-title {
  margin-bottom: 0.75rem;
  padding-left: 2px;
}

.seo-cta-block p {
  margin-bottom: 0.75rem;
  max-width: 68ch;
  line-height: 1.72;
  font-size: 1rem;
}

.seo-cta-block p:last-of-type {
  margin-bottom: 0.5rem;
}

.seo-cta-block .columns__btn-row {
  margin-top: 0.35rem;
  justify-content: flex-start;
}

.seo-cta-block .columns__download {
  padding: 15px 42px;
  font-size: 1.12rem;
  box-shadow: 0 8px 24px rgba(198, 224, 74, 0.45);
}

.text-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.text-panel {
  padding: 20px 18px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(198, 224, 74, 0.16);
}

#android-sections .text-panel:first-child {
  background: linear-gradient(
    160deg,
    rgba(36, 91, 139, 0.28) 0%,
    rgba(0, 0, 0, 0.12) 100%
  );
}

#android-sections .text-panel:last-child {
  border-color: rgba(198, 224, 74, 0.22);
}

.install-mini {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0.45rem 0 0.75rem;
}

.install-mini__card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 70px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(198, 224, 74, 0.16);
}

.install-mini__card--wide {
  grid-column: 1 / -1;
}

.install-mini__num {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(198, 224, 74, 0.18);
  color: #d4ed7a;
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1;
}

.install-mini__title {
  margin: 0 0 4px;
  font-size: 0.96rem;
  font-weight: 700;
  color: #ffffff;
}

.install-mini__card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

#install-guide .section-lead {
  margin-bottom: 0.7rem;
}

#install-guide .hero__install-link {
  display: inline-flex;
  margin-top: 2px;
  padding: 12px 22px;
  border-radius: 12px;
  background: rgba(198, 224, 74, 0.14);
  border: 1px solid rgba(198, 224, 74, 0.48);
  font-weight: 700;
}

#update-guide .checklist {
  margin: 0.45rem 0 0.65rem;
  gap: 8px;
}

#update-guide .checklist li {
  font-size: 0.98rem;
  line-height: 1.6;
}

#update-guide .columns__btn-row {
  margin-top: 0.75rem;
}

#security-guide .callout.age-box {
  margin-top: 12px;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(198, 224, 74, 0.28);
}

#security-guide .callout__title {
  margin-bottom: 6px;
}

#app-info .media-row--balanced {
  gap: 36px;
}

.info-strip {
  padding: 11px 0;
}

.section-wrapper--disclaimer {
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

.section-lead {
  max-width: none;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  text-align: start;
}

main .section-lead {
  margin-bottom: 1rem;
  line-height: 1.75;
  font-size: 1rem;
}

.section-lead--start {
  text-align: start;
}

.section-head {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.columns__btn-row--start {
  justify-content: flex-start;
}

.media-row--balanced {
  align-items: center;
}

.media-row__img-wrap--large {
  flex: 0 0 560px;
  flex-basis: 560px;
  max-width: 560px;
}

.media-row__img-wrap--medium {
  flex: 0 0 480px;
  max-width: 480px;
}

.media-row__img-wrap--large .media-row__img--tall {
  width: 100%;
  height: auto;
}

.text-panel p:last-child {
  margin-bottom: 0;
}

.install-notes {
  list-style: none;
  margin: 0.5rem 0 1rem;
  padding: 0;
  counter-reset: install-note;
}

.install-notes__item {
  position: relative;
  padding: 11px 0 11px 0;
  padding-right: 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.75;
  text-align: start;
  counter-increment: install-note;
}

.install-notes__item:last-child {
  border-bottom: none;
}

.install-notes__item::before {
  content: counter(install-note) ".";
  position: absolute;
  right: 0;
  top: 11px;
  color: rgba(198, 224, 74, 0.85);
  font-weight: 700;
  font-size: 0.9rem;
}

.install-notes__item strong {
  color: #ffffff;
  font-weight: 700;
}

.install-notes__hint {
  margin: 0 0 1.1rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.58);
  text-align: start;
}

.cta-banner {
  padding: 30px 28px;
  border-radius: 20px;
  background: linear-gradient(155deg, #1a5f72 0%, #144b5a 100%);
  border: 1px solid rgba(198, 224, 74, 0.22);
  text-align: start;
}

.cta-banner__title {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800;
  color: #ffffff;
}

.cta-banner__text {
  margin: 0 0 1.1rem;
  max-width: 52ch;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.86);
}

.cta-banner__btn {
  display: inline-flex;
}

.cta-banner__note {
  margin: 14px 0 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
}

.callout--wide {
  padding: 20px 18px;
}

.scroll-top__button {
  background-color: var(--main-accent-bg-color);
}

@media (max-width: 1180px) {
  .hero-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-meta__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .media-row__img-wrap--large {
    max-width: 100%;
    flex-basis: auto;
  }
}

@media (max-width: 900px) {
  .hero--apk {
    padding: 20px 0 24px;
  }

  .hero__body--split {
    gap: 20px;
  }

  .hero__image--card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .hero__img--large,
  .media-row__img--tall {
    min-height: 0;
  }

  .hero__img--large {
    max-width: min(100%, 360px);
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
  }

  .media-row--airy {
    gap: 28px;
  }

  .media-row__img-wrap--medium {
    max-width: 100%;
    flex-basis: auto;
  }

  .feature-grid,
  .text-columns,
  .install-mini {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-summary__item {
    padding: 10px 8px;
  }

  .hero-summary__label {
    font-size: 0.74rem;
  }

  .hero-summary__value {
    font-size: 0.92rem;
  }
}

@media (max-width: 768px) {
  .hero--apk .hero__content--wide {
    padding: 18px 16px;
  }

  .hero--apk .hero__cta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
  }

  .hero--apk .hero__cta .columns__download {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
  }

  .hero--apk .hero__cta .hero__install-link {
    width: 100%;
    padding: 12px 10px;
    font-size: 0.88rem;
    line-height: 1.3;
    text-align: center;
  }

  .hero-summary__label {
    font-size: 0.72rem;
    margin-bottom: 4px;
  }

  .hero-summary__value {
    font-size: 0.9rem;
  }

  .scroll-top__button {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .footer {
    padding-bottom: 1.5rem;
  }

  main .section-wrapper {
    margin: 2.25rem 0;
  }

  .app-meta {
    padding: 16px 14px;
  }

  .app-meta__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card,
  .text-panel,
  .seo-cta-block {
    padding: 16px 14px;
  }
}

/* ============================================================
   Homepage 2026 — new landing layout
   ============================================================ */

/* --- Hero --- */
.hero-x {
  position: relative;
  overflow: hidden;
  padding: 52px 0 58px;
  background:
    radial-gradient(90% 120% at 85% -10%, rgba(198, 224, 74, 0.22) 0%, transparent 55%),
    radial-gradient(70% 90% at 0% 100%, rgba(28, 125, 148, 0.5) 0%, transparent 60%),
    linear-gradient(200deg, #0f3648 0%, #0c2d3c 55%, #0a2432 100%);
  border-bottom: 1px solid rgba(198, 224, 74, 0.22);
}

.hx-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 48px;
  align-items: center;
}

.hx-kicker {
  display: inline-block;
  width: fit-content;
  padding: 6px 0;
  margin-bottom: 14px;
  color: #d4ed7a;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  border-bottom: 2px solid rgba(198, 224, 74, 0.55);
}

.hx-title {
  margin: 0 0 16px;
  font-size: clamp(1.85rem, 4.4vw, 2.75rem);
  line-height: 1.3;
  font-weight: 800;
  color: #ffffff;
}

.hx-text {
  margin: 0 0 12px;
  max-width: none;
  font-size: 1.08rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.92);
}

.hx-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.btn-dl--xl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 44px;
  font-size: 1.15rem;
  min-width: 240px;
  text-align: center;
}

.hx-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  font-weight: 700;
  background: transparent;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.hx-ghost:hover {
  border-color: rgba(198, 224, 74, 0.85);
  background: rgba(198, 224, 74, 0.1);
}

.hx-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  margin: 22px 0 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.62);
}

.hx-meta span {
  display: inline-flex;
  align-items: center;
}

.hx-meta span:not(:last-child)::after {
  content: "•";
  margin: 0 12px;
  color: rgba(198, 224, 74, 0.7);
}

.hx-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hx-img {
  width: 100%;
  max-width: 430px;
  height: auto;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.4);
  transform: rotate(-2deg);
}

.hx-float {
  position: absolute;
  bottom: 22px;
  right: 4px;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--color-green-btn);
  color: #13100c;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

/* --- Download panel --- */
.dl-zone {
  margin-top: -26px;
  position: relative;
  z-index: 2;
}

.dl-panel {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border-radius: 18px;
  background: linear-gradient(120deg, #186070 0%, #134a58 100%);
  border: 1px solid rgba(198, 224, 74, 0.4);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
}

.dl-panel__file {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: rgba(198, 224, 74, 0.16);
  border: 1px solid rgba(198, 224, 74, 0.45);
  color: #d4ed7a;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.dl-panel__info {
  flex: 1 1 auto;
  min-width: 0;
}

.dl-panel__title {
  margin: 0 0 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
}

.dl-panel__meta {
  margin: 0 0 2px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #d4ed7a;
}

.dl-panel__note {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.6);
}

.dl-panel__btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

/* --- Split layout (text + image) --- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 44px;
  align-items: center;
}

.split--rev {
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
}

.split__text .columns__download {
  display: inline-flex;
  margin-top: 1.15rem;
}

.side-img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(198, 224, 74, 0.24);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.3);
}

/* --- Spec table tweaks --- */
main .columns__container p.spec-note {
  margin: 1.1rem 0 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 768px) {
  .spec-table table {
    min-width: 0;
  }

  .spec-table table tbody td:first-child {
    white-space: normal;
    width: 38%;
  }
}

/* --- Pre-install checklist --- */
.prep-panel {
  padding: 26px 26px 22px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(198, 224, 74, 0.22);
  border-right: 4px solid var(--color-green-btn);
}

.ck-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.ck-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.ck-mark {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(198, 224, 74, 0.18);
  border: 1px solid rgba(198, 224, 74, 0.5);
  color: #d4ed7a;
  font-weight: 800;
  font-size: 0.95rem;
}

main .columns__container .ck-item h3 {
  margin: 2px 0 5px;
  font-size: 1.05rem;
  line-height: 1.45;
  font-weight: 800;
  color: #ffffff;
}

main .columns__container .ck-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

/* --- Install steps flow --- */
.steps-flow {
  display: flex;
  flex-direction: column;
  margin-top: 4px;
}

.step-row {
  position: relative;
  display: flex;
  gap: 16px;
  padding: 14px 0;
}

.step-row:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 52px;
  bottom: -6px;
  right: 18px;
  width: 2px;
  background: linear-gradient(180deg, rgba(198, 224, 74, 0.5), rgba(198, 224, 74, 0.12));
}

.step-num {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--color-green-btn-hover), var(--color-green-btn));
  color: #13100c;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 6px 16px rgba(198, 224, 74, 0.35);
}

main .columns__container .step-body h3 {
  margin: 6px 0 5px;
  font-size: 1.08rem;
  line-height: 1.45;
  font-weight: 800;
  color: #ffffff;
}

main .columns__container .step-body p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

/* --- Update band --- */
.upd-band {
  padding: 28px 28px 26px;
  border-radius: 20px;
  background: linear-gradient(140deg, #1a6174 0%, #144b5c 100%);
  border: 1px solid rgba(198, 224, 74, 0.28);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
}

.upd-band > p {
  max-width: none;
}

.upd-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 10px 0 28px;
}

.upd-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(198, 224, 74, 0.18);
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.upd-step b {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(198, 224, 74, 0.2);
  color: #d4ed7a;
  font-weight: 800;
}

.upd-band .columns__download {
  display: inline-flex;
  margin-top: 1.25rem;
}

/* --- Benefits trio --- */
.trio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trio-card {
  position: relative;
  padding: 24px 20px 20px;
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(26, 95, 114, 0.65) 0%, rgba(14, 53, 68, 0.88) 100%);
  border: 1px solid rgba(198, 224, 74, 0.2);
  border-bottom: 3px solid rgba(198, 224, 74, 0.7);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.trio-card:hover {
  background: linear-gradient(165deg, rgba(32, 112, 132, 0.75) 0%, rgba(16, 60, 76, 0.92) 100%);
  border-bottom-color: var(--color-green-btn);
}

.trio-card__idx {
  display: block;
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: 800;
  color: rgba(198, 224, 74, 0.55);
  direction: ltr;
  text-align: right;
}

main .columns__container .trio-card h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  line-height: 1.45;
  font-weight: 800;
  color: #ffffff;
}

main .columns__container .trio-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

/* --- Bottom CTA --- */
.cta-max {
  padding: 40px 32px;
  border-radius: 22px;
  text-align: center;
  background:
    radial-gradient(80% 130% at 50% -20%, rgba(255, 255, 255, 0.14) 0%, transparent 60%),
    linear-gradient(135deg, var(--color-green-btn-hover) 0%, var(--color-green-btn) 55%, #a8c43a 100%);
  box-shadow: 0 20px 52px rgba(198, 224, 74, 0.3);
}

.cta-max h2 {
  margin: 0 0 10px;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: #13100c;
}

main .columns__container .cta-max p {
  margin: 0 auto 20px;
  max-width: none;
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(19, 16, 12, 0.82);
}

.btn-ink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 46px;
  border-radius: 12px;
  background: #13100c;
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-ink:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
  color: #ffffff;
}

.cta-max__note {
  display: block;
  margin-top: 14px;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(19, 16, 12, 0.6);
}

/* --- Fineprint disclaimer --- */
.section-wrapper--fineprint {
  margin: 1.5rem 0 2.5rem;
}

main .columns__container p.fineprint {
  margin: 0;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.66);
}

.fineprint strong {
  color: #ff6aa0;
}

/* --- New layout responsive --- */
@media (max-width: 1024px) {
  .hx-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hx-visual {
    order: 2;
  }

  .hx-img {
    max-width: 360px;
    transform: none;
  }

  .split,
  .split--rev {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .split--rev .split__media {
    order: 2;
  }

  .split__media {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 900px) {
  .trio {
    grid-template-columns: 1fr;
  }

  .upd-flow {
    grid-template-columns: 1fr;
    margin-bottom: 22px;
  }

  .ck-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .hero-x {
    padding: 32px 0 46px;
  }

  .hx-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-dl--xl,
  .hx-ghost {
    width: 100%;
    min-width: 0;
  }

  .dl-zone {
    margin-top: -20px;
  }

  .dl-panel {
    flex-wrap: wrap;
    padding: 18px 16px;
    gap: 14px;
  }

  .dl-panel__file {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .dl-panel__info {
    flex: 1 1 calc(100% - 70px);
  }

  .dl-panel__btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: inline-flex;
  }

  .prep-panel {
    padding: 20px 16px 18px;
  }

  .upd-band {
    padding: 22px 16px 20px;
  }

  .cta-max {
    padding: 30px 18px;
  }

  .btn-ink {
    width: 100%;
  }

  .side-img {
    max-height: 280px;
    object-fit: cover;
  }
}

/* ============================================================
   Mobile download bar refresh
   ============================================================ */
@media (max-width: 700px) {
  .mobile-button {
    left: 10px;
    right: 10px;
    padding: 10px 10px;
    border-radius: 14px 14px 0 0;
    border-color: rgba(198, 224, 74, 0.26);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(246, 250, 255, 0.96) 100%);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.18);
    gap: 10px;
  }

  .mobile-button::before {
    height: 2px;
    background: linear-gradient(90deg, #c6e04a 0%, #d5ed63 50%, #c6e04a 100%);
  }

  .mobile-button > .get-image {
    width: 62px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(198, 224, 74, 0.24);
    background: linear-gradient(145deg, #1e3248, #152536);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  }

  .mobile-button.v1 img {
    max-width: 48px;
    max-height: 13px;
  }

  .mobile-button__info {
    flex: 1 1 auto;
    min-width: 0;
  }

  .mobile-button__title {
    font-size: 14px;
    line-height: 1.1;
    font-weight: 800;
    color: #13223a;
    margin-bottom: 4px;
  }

  .mobile-button__subtitle {
    margin: 0;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 700;
    color: rgba(19, 34, 58, 0.62);
    white-space: nowrap;
  }

  .mobile-button__link {
    min-width: 118px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.2;
    box-shadow: 0 6px 14px rgba(198, 224, 74, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  }

  .mobile-button a.mobile-button__link {
    font-size: 13px;
  }
}