@charset "UTF-8";

/* =========================================================
   1) FONTS, VARIABLES, RESET
   ========================================================= */
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-VariableFont.woff2") format("woff2"),
    url("../fonts/DMSans-VariableFont.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --page-max: 1180px;
  --gold-1: #ecae74;
  --gold-2: #ffe0a3;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: #0b0c10;
  color: #f2f3f5;
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    Cantarell, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =========================================================
   2) LAYOUT BACKGROUND
   ========================================================= */
.main {
  position: relative;
  z-index: 1;
}

.main-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: #0b0c10;
}
.main-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./img/hero.png");
  background-size: cover;
  background-position: center center;
  filter: blur(26px) brightness(0.45) saturate(0.95);
  transform: scale(1.08);
}
.main-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      1200px 700px at 50% 30%,
      rgba(255, 205, 140, 0.18),
      transparent 55%
    ),
    radial-gradient(
      900px 600px at 20% 70%,
      rgba(0, 0, 0, 0.55),
      transparent 60%
    ),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.78));
}

/* =========================================================
   3) HEADER
   ========================================================= */
.header {
  position: relative;
  z-index: 10;
  background: #121215;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
  padding: 12px 20px; /* final */
}

.header__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.brand-logo {
  width: 110px;
  height: auto;
  display: block;
}

.actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  padding: 12px 18px;
  border-radius: 12px;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.2s ease,
    opacity 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:focus {
  outline: 2px solid rgba(245, 210, 131, 0.55);
  outline-offset: 2px;
}
.btn img {
  width: 10px;
  height: auto;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #e8eaed;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.btn-gold {
  color: #141414;
  background: linear-gradient(
    356deg,
    var(--gold-1) 0%,
    var(--gold-2) 49.12%,
    #fff2cc 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 22px rgba(245, 210, 131, 0.25);
}
.btn-gold:hover {
  box-shadow: 0 6px 14px rgba(245, 210, 131, 0.42);
}

/* =========================================================
   4) HERO (DESKTOP DEFAULT)
   ========================================================= */
.hero {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 26px 20px 44px;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
}

.hero-frame {
  position: relative;
  width: 100%;
  min-height: min(560px, calc(100vh - 140px));
  border-radius: 26px;
  overflow: hidden;
  background: rgba(16, 16, 18, 0.35);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.55);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero-bg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.55) 30%,
      rgba(0, 0, 0, 0.18) 62%,
      rgba(0, 0, 0, 0) 100%
    ),
    radial-gradient(
      900px 600px at 25% 50%,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0) 65%
    );
}

.hero-stroke {
  position: absolute;
  inset: 0;
  border-radius: 26px;
  pointer-events: none;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(0, 0, 0, 0.45);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: clamp(24px, 4vw, 48px);
  padding-top: 20vh;
}

.hero-eyebrow {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
  margin: 0 0 10px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
}

.hero-title {
  margin: 0 0 10px;
  line-height: 1.05;
}

.hero-big {
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: clamp(40px, 4.2vw, 60px);
  background: linear-gradient(180deg, #ffe7b0 0%, #f3c07a 55%, #d99a52 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  text-wrap: nowrap;
}

.hero-promo {
  width: max-content;
  display: block;
  align-items: center;
  gap: 8px;
  margin: 8px 0 18px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px dashed #d99a52;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  font-weight: 700;
}

.hero-promo-label {
  opacity: 0.8;
  font-weight: 700;
}
.hero-promo-code {
  font-weight: 900;
  letter-spacing: 0.06em;
}

.hero-cta-link {
  text-decoration: none;
}

.hero-cta {
  padding: 14px 22px;
  font-size: 16px;
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(245, 210, 131, 0.22);
}

.hero-woman {
  position: absolute;
  right: clamp(14px, 3vw, 34px);
  bottom: -6px;
  height: min(98%, 680px);
  width: auto;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 26px 60px rgba(0, 0, 0, 0.55));
}

/* =========================================================
   5) LEAD + STEPS
   ========================================================= */
.bl-lead {
  max-width: var(--page-max);
  margin: 54px auto 10px;
  padding: 0 20px;
  text-align: center;
}
.bl-lead-title {
  margin: 0 0 6px;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: linear-gradient(355deg, var(--gold-1) 0%, #ffe3a3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bl-lead-sub {
  margin: 8px 0 24px;
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
}

.bl-steps-wrap {
  max-width: var(--page-max);
  margin: 12px auto 0;
  padding: 0 20px;
}
.bl-steps-heading {
  margin: 0 0 14px;
  text-align: center;
  color: #e9e9ea;
  font-weight: 800;
  letter-spacing: 0.6px;
}
.bl-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.bl-step {
  position: relative;
  padding: 22px;
  border-radius: 18px;
  background: #252525;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.35),
    0 10px 30px rgba(0, 0, 0, 0.35);
}
.bl-step::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 24px;
  pointer-events: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  opacity: 0.45;
}
.step-badge {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  background: linear-gradient(
    356deg,
    var(--gold-1) 0%,
    var(--gold-2) 49.12%,
    #fff2cc 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.step-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(180deg, #ffe7a8 0%, #d9b769 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
@supports not (-webkit-mask-composite: xor) {
  .step-badge {
    border: 2px solid #e9ca88;
  }
}
.bl-step h5 {
  margin: 16px 0 6px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}
.bl-step p {
  margin: 0;
  font-size: 14px;
  color: #9aa0a6;
}

/* =========================================================
   6) BONUS TABLE
   ========================================================= */
.bonus {
  max-width: var(--page-max);
  margin: 56px auto;
  padding: 0 20px;
  text-align: center;
}
.bonus-title {
  margin: 0 0 20px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #fff;
}
.bonus-table-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bonus-table {
  width: 70%;
  margin: 0 auto;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0 16px;
}
.bonus-table thead th {
  padding: 0 24px 8px;
  text-align: center;
  font: 700 14px/1 "DM Sans", sans-serif;
  color: #cfd2d6;
}
.bonus-table thead .th-right {
  text-align: right;
  padding-right: 28px;
}
.bonus-table tbody tr {
  background: #252525;
  border-radius: 22px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.bonus-table tbody td {
  border: 0;
  padding: 20px 24px;
  font-size: 18px;
  color: #e9e9ea;
}
.bonus-table tbody td:first-child {
  border-top-left-radius: 22px;
  border-bottom-left-radius: 22px;
}
.bonus-table tbody td:last-child {
  border-top-right-radius: 22px;
  border-bottom-right-radius: 22px;
}
.cell-title {
  font-weight: 700;
  color: #fff;
}
.cell-right {
  text-align: right;
  padding-right: 28px;
  font-weight: 800;
  color: #f5f6f7;
}

.bonus-total-row {
  width: 70%;
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: 45% 35% 20%;
  align-items: center;
  padding-right: 28px;
}
.bt-label {
  grid-column: 2/3;
  justify-self: end;
  color: #cfd2d6;
  font-weight: 800;
  letter-spacing: 0.3px;
}
.bt-value {
  grid-column: 3/3;
  justify-self: end;
  color: #f5f6f7;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.bonus-tc {
  margin: 16px 0 0;
  font-size: 13px;
  color: #9aa0a6;
}
.bonus-tc a {
  color: #ffe7a8;
  text-decoration: none;
}

/* =========================================================
   7) FOOTER
   ========================================================= */
.footer-line {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 28px 0;
}

.footer-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 24px 0;
}
.footer-cards img {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
.footer-cards img:hover {
  opacity: 1;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin: 16px 0;
  text-align: center;
}
.footer-links a {
  color: rgb(115, 207, 230);
  text-decoration: none;
  font-size: 14px;
}
.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 32px;
  color: #bdbdbd;
}
.footer-copy {
  font-size: 14px;
  margin-bottom: 16px;
}

.footer-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-bottom: 20px;
}
.footer-icons img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-icons img[alt="18+"] {
  max-height: 36px;
}

.footer-license {
  font-size: 12px;
  color: #bdbdbd;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.footer-license a {
  color: #7cc0ff;
  text-decoration: none;
}
.footer-license a:hover {
  text-decoration: underline;
}

.footer-providers {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 32px 0 56px;
}
.footer-providers a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(26px, 3.6vw, 36px);
  width: clamp(100px, 12vw, 160px);
  flex: 0 0 auto;
}
.footer-providers img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.footer-providers img:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* =========================================================
   8) CASHBACK SECTION
   ========================================================= */
.cashback-section {
  padding: 0 0 20px;
  color: #f5f5f7;
  font-family: "DM Sans", sans-serif;
}
.cashback-hero {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto 50px;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
}
.cashback-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.cashback-hero-content {
  position: absolute;
  inset: 0;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.25) 60%,
    transparent 100%
  );
}
.cashback-eyebrow {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #f3d68b;
  margin: 0 0 12px;
}
.cashback-title {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 24px;
  color: #fff;
}
.cashback-title span {
  color: #ffcb70;
}

.cashback-btn {
  width: fit-content;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, #ffd27a, #ffb347);
  color: #171717;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
}
.cashback-btn:hover {
  background: linear-gradient(90deg, #ffe29f, #ffb347);
  transform: translateY(-2px);
}

.cashback-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  color: #e6e6ea;
  font-size: 16px;
  line-height: 1.6;
}
.cashback-article p {
  margin-bottom: 18px;
}

.cashback-subtitle {
  font-weight: 700;
  color: #f7d08a;
  margin-top: 32px;
  margin-bottom: 10px;
  font-size: 17px;
}

.cashback-formula {
  color: #ffcb70;
  margin-top: 28px;
  margin-bottom: 12px;
  font-weight: 600;
}
.cashback-link {
  color: #ffb347;
  text-decoration: none;
  transition: 0.2s;
}
.cashback-link:hover {
  text-decoration: underline;
}

.cashback-list {
  list-style: disc;
  margin: 12px 0 28px 20px;
  color: #e6e6ea;
  line-height: 1.6;
}
.cashback-sublist {
  list-style: circle;
  margin: 8px 0 8px 24px;
  color: #b9b9c3;
}
.cashback-article hr {
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  margin: 28px 0;
}

/* Anim */
.cb-anim {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.cb-anim.cb-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   9) VERIFY SECTION
   ========================================================= */
.verify-hero-section {
  background: transparent;
  padding: 60px 0 10px;
  color: #f5f5f7;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}
.verify-hero {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto 50px;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
}
.verify-hero-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.verify-hero-content {
  position: absolute;
  inset: 0;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.25) 60%,
    transparent 100%
  );
}
.verify-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
  color: #f3d68b;
  margin: 0 0 10px;
}
.verify-title {
  margin: 0 0 20px;
  line-height: 1.1;
  color: #fff;
  font-weight: 700;
  font-size: 40px;
}
.verify-title span {
  color: #ffcb70;
}

.verify-btn {
  width: fit-content;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffd27a, #ffb347);
  color: #171717;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.9);
  transition: 0.25s;
}
.verify-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #ffe29f, #ffb347);
}

.verify-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.verify-subtitle {
  color: #f7d08a;
  font-weight: 700;
  margin: 24px 0 10px;
  font-size: 17px;
}
.verify-article p {
  color: #e6e6ea;
  line-height: 1.6;
  margin: 0 0 16px;
}
.verify-list {
  list-style: disc;
  margin: 8px 0 18px 20px;
  color: #e6e6ea;
  line-height: 1.6;
}
.verify-article hr {
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  margin: 22px 0;
}

/* =========================================================
   10) SEO TEXT BLOCK
   ========================================================= */
.seo-section {
  max-width: 960px;
  margin: 60px auto;
  padding: 0 20px;
  color: #ddd;
  font-family: "Rubik", Arial, sans-serif;
  line-height: 1.6;
}
.seo-section h1,
.seo-section h2 {
  color: #f7d791;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}
.seo-section h1 {
  font-size: 32px;
  margin-top: 0;
}
.seo-section h2 {
  font-size: 24px;
  margin-top: 40px;
}
.seo-section p {
  margin-bottom: 16px;
  font-size: 16px;
}
.seo-section ul {
  margin: 0 0 20px 20px;
  padding: 0;
}

/* =========================================================
   11) RESPONSIVE (MOBILE/TABLET)
   ========================================================= */
@media (max-width: 768px) {
  .cashback-img {
    height: 240px;
  }
  .cashback-hero-content {
    padding: 30px 20px;
    align-items: flex-start;
  }
  .cashback-title {
    font-size: 32px;
  }

  .verify-hero-img {
    height: 240px;
  }
  .verify-hero-content {
    padding: 30px 20px;
    align-items: flex-start;
  }
  .verify-title {
    font-size: 28px;
  }

  .footer-providers {
    gap: 22px;
    padding: 20px 0 40px;
  }
  .footer-providers a {
    height: 28px;
    width: clamp(90px, 22vw, 140px);
  }
}

@media (max-width: 720px) {
  html,
  body {
    overflow-x: hidden;
  }

  .bl-steps {
    grid-template-columns: 1fr;
  }

  .bonus-table-wrap {
    width: 100%;
    padding: 0 14px;
  }
  .bonus-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: auto;
  }
  .bonus-table thead {
    display: none;
  }

  .bonus-table tbody {
    display: block;
  }
  .bonus-table tbody tr {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "title right"
      "mid   right";
    align-items: center;
    column-gap: 14px;
    row-gap: 8px;

    padding: 16px;
    margin: 12px 0;
    border-radius: 16px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.02)
    );
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    overflow: hidden;
  }
  .bonus-table tbody td {
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
  }
  .bonus-table .cell-title {
    grid-area: title;
    margin: 0;
    font-weight: 800;
    font-size: 18px;
    line-height: 1.25;
    color: #fff;
  }
  .bonus-table .cell-mid {
    grid-area: mid;
    font-size: 16px;
    color: #d6d6d6;
  }
  .bonus-table .cell-right {
    grid-area: right;
    justify-self: end;
    text-align: right;
    font-size: 18px;
    font-weight: 800;
    color: #f5f6f7;
    padding-left: 12px;
  }

  .bonus-total-row {
    width: 100%;
    margin: 10px 0 0;
    padding: 0 14px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 8px;
  }
  .bt-label {
    justify-self: start;
    font-weight: 800;
    color: #cfd2d6;
    grid-column: 1/2;
  }
  .bt-value {
    justify-self: end;
    font-weight: 800;
    color: #f5f6f7;
    grid-column: 2/3;
  }
}

@media (max-width: 600px) {
  .seo-section h1 {
    font-size: 26px;
  }
  .seo-section h2 {
    font-size: 20px;
  }
  .seo-section p,
  .seo-section li {
    font-size: 15px;
  }
}

@media (max-width: 560px) {
  /* header: hide CONECTARE */
  .actions a:first-child {
    display: none;
  }
  .btn {
    padding: 12px 16px;
  }

  /* hero */
  .hero {
    padding: 14px 12px 34px;
    min-height: calc(100vh - 220px);
  }
  .hero-frame {
    border-radius: 22px;
    min-height: calc(100vh - 180px);
  }
  .hero-bg > img {
    object-position: center bottom;
  }

  .hero-copy {
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    max-width: 320px;
    padding: 0 16px;
    text-align: center;
    align-items: center;
  }

  .hero-overlay {
    display: none;
  }

  .hero-promo {
    width: max-content;
    justify-content: center;
    font-size: 13px;
    margin: 0 auto 15px;
  }

  .hero-cta {
    width: 100%;
    font-size: 14px;
  }

  .hero-woman {
    right: 50%;
    transform: translateX(50%);
    height: 65%;
    bottom: -2px;
  }

  /* blurred page background swaps to mobile */
  .main-bg::before {
    background-image: url("./img/mobile-bg.png");
    background-position: center top;
    filter: blur(22px) brightness(0.52) saturate(0.95);
    transform: scale(1.07);
  }
}

@media (max-width: 480px) {
  .brand-logo {
    width: 86px;
  }
  .actions {
    gap: 8px;
  }
  .actions .btn {
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    white-space: nowrap;
  }
}

@media (max-width: 375px) {
  .hero-frame {
      border-radius: 22px;
      min-height: calc(100vh - 50px);
  }
}