:root {
  --ink: #2a1722;
  --muted: #7b5d69;
  --line: #f2ccd6;
  --paper: #fff6f9;
  --white: #ffffff;
  --sage: #348270;
  --moss: #bf3f68;
  --coral: #f05f51;
  --sun: #f6a24a;
  --aqua: #effaf5;
  --blush: #ffe2eb;
  --petal: #fff1f5;
  --peach: #fff0e4;
  --mint: #ddf4ec;
  --shadow: 0 22px 55px rgba(191, 63, 104, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, var(--paper) 0%, #fffafc 46%, var(--aqua) 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 246, 249, 0.92);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(191, 63, 104, 0.07);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  color: var(--white);
  background: linear-gradient(135deg, var(--moss), var(--coral) 58%, var(--sun));
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(191, 63, 104, 0.22);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
}

.nav a:hover,
.nav-button:hover {
  color: var(--moss);
}

.nav-button {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.workspace {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
  padding: clamp(36px, 7vw, 86px) clamp(18px, 4vw, 56px);
  min-height: calc(100vh - 76px);
  background:
    linear-gradient(112deg, rgba(42, 23, 34, 0.78) 0%, rgba(191, 63, 104, 0.52) 47%, rgba(246, 162, 74, 0.34) 100%),
    url("assets/photos/regression-crystal.jpg")
      center/cover;
  color: var(--white);
}

.workspace-copy {
  align-self: end;
  max-width: 760px;
  padding-bottom: clamp(10px, 5vh, 58px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.workspace .eyebrow,
.workspace .checkout-note {
  color: #ffd9ca;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(44px, 8vw, 86px);
}

h2 {
  font-size: clamp(31px, 5vw, 54px);
}

h3 {
  font-size: 22px;
}

.workspace-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 22px);
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--moss), var(--coral) 58%, var(--sun));
  box-shadow: 0 14px 28px rgba(191, 63, 104, 0.24);
}

.button.primary:hover {
  background: linear-gradient(135deg, #a9335c, #dc5448 58%, #e9913e);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.48);
}

.button.full {
  width: 100%;
}

.checkout {
  display: flex;
  flex-direction: column;
  align-self: center;
  gap: 18px;
  padding: 20px;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 241, 245, 0.96));
  border: 1px solid rgba(255, 220, 228, 0.84);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.checkout-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.checkout-header span {
  color: var(--muted);
}

.checkout-header strong {
  color: var(--moss);
  font-size: 26px;
}

.purchase-options {
  display: grid;
  gap: 10px;
}

.purchase-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 94px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  background: var(--white);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.purchase-option:hover {
  transform: translateY(-1px);
  border-color: #ef9eb2;
  box-shadow: 0 12px 26px rgba(191, 63, 104, 0.1);
}

.purchase-option.active {
  border-color: var(--moss);
  background: linear-gradient(135deg, var(--petal), var(--peach));
  box-shadow: inset 0 0 0 1px rgba(191, 63, 104, 0.14);
}

.purchase-option input {
  accent-color: var(--moss);
}

.purchase-option strong,
.purchase-option small {
  display: block;
}

.purchase-option small,
.checkout-note,
.record-card p,
.subscription-copy p,
.benefits span,
.steps p,
.footer span {
  color: var(--muted);
}

.purchase-option b {
  white-space: nowrap;
}

.checkout-note {
  margin: 0;
  font-size: 14px;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.stats-band article {
  min-height: 126px;
  padding: 28px clamp(18px, 3vw, 42px);
  background: linear-gradient(180deg, var(--white), #fff9fb);
}

.stats-band article:nth-child(even) {
  background: linear-gradient(180deg, var(--petal), var(--peach));
}

.stats-band strong,
.stats-band span {
  display: block;
}

.stats-band strong {
  color: var(--coral);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}

.stats-band span {
  margin-top: 8px;
  color: var(--muted);
}

.section,
.feature-band,
.access-band,
.about-band {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 56px);
}

.section {
  background: linear-gradient(180deg, #fffafc, var(--paper));
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter {
  min-height: 42px;
  padding: 9px 14px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.filter.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--moss), var(--coral));
  border-color: transparent;
}

.record-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.record-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(191, 63, 104, 0.1);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.record-card:hover {
  transform: translateY(-3px);
  border-color: #ef9eb2;
  box-shadow: 0 22px 46px rgba(191, 63, 104, 0.16);
}

.record-media {
  position: relative;
}

.record-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.play-marker {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(191, 63, 104, 0.94), rgba(240, 95, 81, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  font-weight: 900;
}

.record-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
}

.record-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  color: var(--moss);
  background: var(--blush);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.record-card p {
  margin: 0;
}

.record-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
  flex-wrap: wrap;
}

.record-actions strong {
  font-size: 20px;
  white-space: nowrap;
}

.record-actions .button {
  min-height: 42px;
  padding: 9px 14px;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: linear-gradient(135deg, var(--white), var(--petal));
}

.about-band h2,
.section-heading h2 {
  color: #3f2131;
}

.about-band p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.about-band img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.about-points article {
  min-height: 136px;
  padding: 16px;
  background: linear-gradient(180deg, var(--white), var(--petal));
  border: 1px solid var(--line);
  border-radius: 8px;
}

.about-points strong,
.about-points span {
  display: block;
}

.about-points span {
  margin-top: 8px;
  color: var(--muted);
}

.reviews-section {
  background: linear-gradient(180deg, var(--petal), var(--peach) 52%, var(--aqua));
}

.section-note {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}

.review-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 14px;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--moss) transparent;
}

.review-card {
  flex: 0 0 clamp(220px, 26vw, 330px);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(191, 63, 104, 0.1);
  scroll-snap-align: start;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.review-card:hover {
  transform: translateY(-2px);
  border-color: #ef9eb2;
  box-shadow: 0 22px 46px rgba(191, 63, 104, 0.16);
}

.review-card img {
  width: 100%;
  height: clamp(360px, 58vh, 620px);
  object-fit: contain;
  object-position: top center;
  transition: transform 180ms ease;
}

.review-card:hover img {
  transform: scale(1.02);
}

.review-modal {
  width: min(94vw, 760px);
}

.review-modal img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 8px;
}

.catalog-secondary {
  color: var(--ink);
  background: var(--petal);
  border-color: var(--line);
  box-shadow: none;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: linear-gradient(135deg, var(--petal) 0%, #fff9fb 46%, var(--peach) 100%);
}

.feature-band img,
.subscription-layout img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 8px;
}

.feature-band p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--moss), var(--coral));
  border-radius: 4px;
  content: "";
}

.inline-offer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.inline-offer strong {
  font-size: 30px;
}

.subscription {
  background: linear-gradient(180deg, var(--white), #fff9fb);
}

.price-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 13px;
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), var(--sun));
  border-radius: 8px;
  font-weight: 900;
  white-space: nowrap;
}

.subscription-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.subscription-copy p {
  max-width: 720px;
  margin: 0;
  font-size: 18px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.benefits article {
  min-height: 142px;
  padding: 18px;
  background: linear-gradient(180deg, var(--white), var(--petal));
  border: 1px solid var(--line);
  border-radius: 8px;
}

.benefits strong,
.benefits span {
  display: block;
}

.benefits span {
  margin-top: 8px;
}

.access-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  background: linear-gradient(180deg, var(--white), var(--aqua));
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  min-height: 220px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(191, 63, 104, 0.08);
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  margin-bottom: 30px;
  color: var(--white);
  background: linear-gradient(135deg, var(--moss), var(--coral));
  border-radius: 8px;
  font-weight: 900;
}

.steps strong {
  display: block;
  font-size: 20px;
}

.steps p {
  margin: 10px 0 0;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(135deg, #2a1722, #5a1f38);
}

.footer strong,
.footer span {
  display: block;
}

.footer span {
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.order-modal {
  width: min(94vw, 520px);
  padding: 0;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.order-modal::backdrop {
  background: rgba(42, 23, 34, 0.62);
}

.order-form {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 26px;
  background: linear-gradient(180deg, var(--white), #fff9fb);
}

.order-form h2 {
  padding-right: 36px;
  font-size: 34px;
}

.order-form p {
  margin: 0;
  color: var(--muted);
}

.order-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
}

.order-form input,
.order-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  color: var(--ink);
  background: #fff9fb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.order-form textarea {
  min-height: 108px;
  resize: vertical;
}

.order-form small {
  color: var(--muted);
}

.form-message {
  display: none;
  margin: 0;
  padding: 12px;
  color: #7c2d47;
  background: var(--petal);
  border: 1px solid #eeb7c5;
  border-radius: 8px;
  font-weight: 800;
}

.form-message.active {
  display: block;
}

.form-message.error {
  color: #9b2f2c;
  background: #fff0ec;
  border-color: #f2afa5;
}

.payment-modal {
  width: min(94vw, 680px);
}

.bank-details {
  display: grid;
  gap: 8px;
  margin: 0;
}

.bank-details div {
  display: grid;
  grid-template-columns: minmax(130px, 0.42fr) minmax(0, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.bank-details dt {
  color: var(--muted);
  font-weight: 800;
}

.bank-details dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.payment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.video-player-modal {
  width: min(94vw, 920px);
}

.video-player-modal video {
  width: 100%;
  max-height: 68vh;
  background: var(--ink);
  border-radius: 8px;
}

.cabinet-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
  padding: clamp(48px, 8vw, 104px) clamp(18px, 4vw, 56px);
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(42, 23, 34, 0.68), rgba(191, 63, 104, 0.46), rgba(246, 162, 74, 0.22)),
    url("assets/photos/olena-bukhantsova.jpg") center 18% / cover;
}

.cabinet-hero h1 {
  max-width: 760px;
}

.cabinet-hero p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.cabinet-auth {
  display: grid;
  gap: 14px;
}

.cabinet-login {
  display: grid;
  gap: 14px;
  padding: 20px;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 241, 245, 0.94));
  border: 1px solid rgba(255, 220, 228, 0.84);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cabinet-login h2 {
  font-size: 24px;
}

.cabinet-login label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
}

.cabinet-login input {
  min-height: 48px;
  padding: 12px;
  color: var(--ink);
  background: #fff9fb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cabinet-switch {
  margin: 0;
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.cabinet-switch a {
  color: var(--moss);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.register-success strong {
  display: block;
  color: var(--moss);
  font-size: clamp(34px, 6vw, 54px);
  line-height: 1;
}

.register-success p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.access-code-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 18px;
  background: linear-gradient(135deg, var(--petal), var(--peach));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(191, 63, 104, 0.08);
}

.access-code-panel[hidden] {
  display: none;
}

.access-code-panel span,
.access-code-panel strong,
.access-code-panel p {
  display: block;
}

.access-code-panel span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.access-code-panel strong {
  margin-top: 4px;
  color: var(--moss);
  font-size: clamp(28px, 5vw, 42px);
  letter-spacing: 0;
}

.access-code-panel p {
  max-width: 620px;
  margin: 6px 0 0;
  color: var(--muted);
}

.protected-player {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border-radius: 8px;
}

.protected-player video {
  width: 100%;
  max-height: 68vh;
  background: var(--ink);
}

.video-watermark {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(24, 32, 29, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  pointer-events: none;
  font-size: 13px;
  font-weight: 800;
}

.empty-state {
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px;
  color: var(--muted);
  text-align: center;
  background: linear-gradient(180deg, var(--white), var(--petal));
  border: 1px dashed var(--line);
  border-radius: 8px;
}

.icon-button {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

@media (max-width: 980px) {
  .topbar,
  .section-heading,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .workspace,
  .feature-band,
  .subscription-layout,
  .access-band,
  .about-band,
  .cabinet-hero {
    grid-template-columns: 1fr;
  }

  .workspace {
    min-height: auto;
  }

  .checkout {
    align-self: stretch;
  }

  .stats-band,
  .record-grid,
  .benefits,
  .steps,
  .about-points,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-band img,
  .subscription-layout img {
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  .topbar {
    position: static;
  }

  .workspace {
    padding-top: 32px;
  }

  h1 {
    font-size: clamp(38px, 13vw, 54px);
  }

  .purchase-option {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .purchase-option b {
    grid-column: 2;
  }

  .stats-band,
  .record-grid,
  .benefits,
  .steps,
  .about-points,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .record-actions,
  .inline-offer,
  .payment-actions,
  .access-code-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .record-actions .button,
  .inline-offer .button,
  .payment-actions .button,
  .access-code-panel .button {
    width: 100%;
  }

  .bank-details div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
