@font-face {
  font-family: "Cp5Montserrat";
  src: url("static/fonts/montserrat-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: "Cp5Montserrat";
  src: url("static/fonts/montserrat-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: optional;
}

:root {
  --cp5-bg-main: #19071f;
  --cp5-bg-panel: #240a2b;
  --cp5-bg-panel-2: #31103a;
  --cp5-bg-card: #3f1248;
  --cp5-bg-soft: #4f1c58;
  --cp5-bg-contrast: #0f0616;
  --cp5-text-main: #f2eafa;
  --cp5-text-soft: #d6bfdd;
  --cp5-text-muted: #b291bf;
  --cp5-accent-lime: #6ad100;
  --cp5-accent-lime-2: #5abd00;
  --cp5-accent-gold: #ffdd4d;
  --cp5-border-soft: rgba(247, 228, 255, 0.12);
  --cp5-shadow-soft: 0 14px 30px rgba(9, 2, 13, 0.35);
  --cp5-shadow-strong: 0 20px 40px rgba(5, 1, 10, 0.55);
  --cp5-sidebar-width: 262px;
  --cp5-gutter: clamp(14px, 2vw, 26px);
  --cp5-section-gap: clamp(16px, 2vw, 24px);
  --cp5-radius-lg: 20px;
  --cp5-radius-md: 14px;
  --cp5-radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Cp5Montserrat", "Trebuchet MS", sans-serif;
  background: radial-gradient(circle at 18% 10%, #4f1559 0%, #250a2d 38%, #120617 75%);
  color: var(--cp5-text-main);
  overflow-x: hidden;
}

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

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

.cp5-layout {
  min-height: 100vh;
}

.cp5-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--cp5-sidebar-width);
  background: linear-gradient(180deg, #22082a 0%, #17061f 100%);
  border-right: 1px solid var(--cp5-border-soft);
  padding: 18px 14px 14px;
  overflow-y: auto;
}

.cp5-sidebar-inner {
  display: flex;
  min-height: calc(100vh - 32px);
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cp5-logo-link {
  width: 164px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cp5-border-soft);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.cp5-logo-link img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.cp5-sidebar-cta {
  width: 100%;
  display: grid;
  gap: 10px;
}

.cp5-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  min-width: 210px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: center;
}

.cp5-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.cp5-btn-main {
  background: linear-gradient(180deg, var(--cp5-accent-lime) 0%, var(--cp5-accent-lime-2) 100%);
  color: #1d2d00;
  box-shadow: 0 12px 22px rgba(71, 142, 0, 0.35);
}

.cp5-btn-main:hover {
  transform: translateY(-1px);
}

.cp5-btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--cp5-border-soft);
  color: var(--cp5-text-main);
  min-width: 0;
}

.cp5-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.cp5-sidebar-nav {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--cp5-border-soft);
  border-radius: 14px;
  padding: 10px;
}

.cp5-sidebar-nav a {
  display: block;
  padding: 9px 12px;
  margin-bottom: 6px;
  border-radius: 10px;
  color: var(--cp5-text-soft);
  font-size: 0.9rem;
  border: 1px solid transparent;
}

.cp5-sidebar-nav a:last-child {
  margin-bottom: 0;
}

.cp5-sidebar-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
}

.cp5-sidebar-disclaimer {
  margin-top: auto;
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  color: var(--cp5-text-muted);
  line-height: 1.5;
}

.cp5-main {
  margin-left: var(--cp5-sidebar-width);
  padding-inline: var(--cp5-gutter);
  padding-top: var(--cp5-gutter);
  padding-bottom: 0;
}

.cp5-main > section {
  margin-block: var(--cp5-section-gap);
}

.cp5-main > section:first-of-type {
  margin-top: 0;
}

.cp5-main > section:last-of-type {
  margin-bottom: 0;
}

.cp5-main h2 {
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  margin: 0 0 12px;
}

.cp5-main h3 {
  margin: 18px 0 8px;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.cp5-main p {
  margin: 0 0 12px;
  color: var(--cp5-text-soft);
  line-height: 1.68;
}

.cp5-main ul,
.cp5-main ol {
  margin: 0 0 12px;
  padding-left: 20px;
  color: var(--cp5-text-soft);
  line-height: 1.66;
}

.cp5-panel {
  background: linear-gradient(180deg, rgba(69, 21, 77, 0.5) 0%, rgba(34, 10, 42, 0.82) 100%);
  border-radius: var(--cp5-radius-lg);
  border: 1px solid var(--cp5-border-soft);
  box-shadow: var(--cp5-shadow-soft);
  padding: clamp(16px, 2.2vw, 26px);
}

.cp5-hero {
  margin-top: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.cp5-hero picture,
.cp5-hero img {
  width: 100%;
  height: clamp(380px, 42vw, 520px);
}

.cp5-hero img {
  object-fit: cover;
}

.cp5-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 2.2vw, 30px);
}

.cp5-hero-card {
  width: min(980px, calc(100% - 52px));
  background: rgba(25, 8, 31, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  box-shadow: var(--cp5-shadow-strong);
  backdrop-filter: blur(2px);
  padding: clamp(16px, 2.4vw, 26px);
}

.cp5-hero-kicker {
  margin: 0;
  color: #f8d5ff;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}

.cp5-hero h1 {
  margin: 10px 0;
  font-size: clamp(1.6rem, 2.6vw, 2.8rem);
  color: var(--cp5-accent-gold);
  line-height: 1.15;
}

.cp5-hero p {
  margin: 0;
  color: #ffeefb;
}

.cp5-hero-actions {
  margin-top: 14px;
}

.cp5-nav-accordion {
  padding: 0;
  overflow: hidden;
}

.cp5-nav-toggle {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  border: 0;
  background: #2f0f38;
  color: var(--cp5-text-main);
  font: inherit;
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.2;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 14px 18px;
  cursor: pointer;
}

.cp5-nav-toggle span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.cp5-nav-toggle i {
  font-style: normal;
  margin-left: 12px;
}

.cp5-nav-links {
  list-style: none;
  margin: 0;
  padding: 10px 14px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid var(--cp5-border-soft);
}

.cp5-nav-links a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--cp5-text-soft);
  font-size: 0.96rem;
}

.cp5-nav-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.cp5-slot-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.cp5-slot-card {
  position: relative;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 14px;
  background: transparent;
  box-shadow: 0 12px 24px rgba(2, 0, 6, 0.38);
  overflow: hidden;
}

.cp5-slot-card:hover,
.cp5-slot-card.cp5-slot-active {
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.5);
}

.cp5-slot-media {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
}

.cp5-slot-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.cp5-slot-center-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.cp5-slot-center-play span {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: rgba(15, 8, 18, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  padding-left: 4px;
}

.cp5-slot-actions {
  position: absolute;
  inset: auto 8px 8px;
  display: none;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
}

.cp5-slot-card.cp5-slot-active .cp5-slot-actions {
  display: grid;
}

.cp5-slot-card.cp5-slot-active .cp5-slot-center-play {
  display: none;
}

.cp5-hover-mode .cp5-slot-card:hover .cp5-slot-actions {
  display: grid;
}

.cp5-hover-mode .cp5-slot-card:hover .cp5-slot-center-play {
  display: none;
}

.cp5-slot-action {
  min-height: 40px;
  min-width: 0;
  padding: 10px;
  font-size: 0.82rem;
  border-radius: 10px;
  border: 0;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.35);
}

.cp5-slot-action-play {
  background: linear-gradient(180deg, #79ef00 0%, #4cac00 100%);
  color: #173500;
}

.cp5-slot-action-demo {
  background: linear-gradient(180deg, #ffffff 0%, #d6d4e0 100%);
  color: #2f2340;
}

.cp5-slot-intro {
  margin-top: 14px;
  padding: 0 2px;
}

.cp5-table-wrap {
  overflow-x: auto;
}

.cp5-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
}

.cp5-table th,
.cp5-table td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--cp5-border-soft);
  text-align: left;
  font-size: 0.95rem;
  vertical-align: top;
}

.cp5-table th {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 600;
}

.cp5-table td {
  color: var(--cp5-text-soft);
}

.cp5-table a {
  color: #ffd664;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.cp5-columns-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cp5-note-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cp5-note {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cp5-border-soft);
  border-radius: 12px;
  padding: 12px;
}

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

.cp5-field {
  display: grid;
  gap: 5px;
}

.cp5-field label {
  font-size: 0.9rem;
  color: var(--cp5-text-soft);
}

.cp5-field input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--cp5-border-soft);
  background: rgba(8, 3, 12, 0.45);
  color: #fff;
  padding: 11px;
  font: inherit;
}

.cp5-calc-result {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(138, 255, 16, 0.35);
  background: rgba(66, 124, 0, 0.2);
}

.cp5-calc-result strong {
  display: block;
  font-size: 1.25rem;
  color: #d8ff8b;
  margin-top: 4px;
}

.cp5-cta-banner {
  position: relative;
  overflow: hidden;
  min-height: clamp(230px, 35vw, 320px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 2vw, 26px);
}

.cp5-cta-banner picture,
.cp5-cta-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cp5-cta-card {
  position: relative;
  width: min(1020px, calc(100% - 52px));
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(26, 7, 33, 0.76);
  padding: clamp(16px, 2.2vw, 24px);
  text-align: center;
}

.cp5-cta-card h3 {
  margin-top: 0;
  color: #fff;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.cp5-cta-card p {
  margin: 0;
}

.cp5-cta-card .cp5-btn {
  margin-top: 12px;
}

.cp5-auth-shots {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.cp5-auth-shots figure {
  margin: 0;
  width: min(620px, 100%);
}

.cp5-auth-shots img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid var(--cp5-border-soft);
  box-shadow: var(--cp5-shadow-soft);
}

.cp5-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cp5-pros,
.cp5-cons {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--cp5-border-soft);
  background: rgba(255, 255, 255, 0.03);
}

.cp5-pros h3,
.cp5-cons h3 {
  margin-top: 0;
}

.cp5-reviews {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  gap: 10px;
  align-items: center;
}

.cp5-review-btn {
  width: 40px;
  min-width: 40px;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  border: 1px solid var(--cp5-border-soft);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 1.2rem;
}

.cp5-review-viewport {
  overflow: hidden;
}

.cp5-review-track {
  display: flex;
  transition: transform 0.35s ease;
}

.cp5-review-card {
  flex: 0 0 100%;
  min-width: 0;
  border: 1px solid var(--cp5-border-soft);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.cp5-review-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.cp5-review-name {
  color: #fff;
  font-weight: 600;
}

.cp5-review-date,
.cp5-review-rate {
  color: var(--cp5-text-muted);
  font-size: 0.88rem;
}

.cp5-faq-item {
  border-radius: 12px;
  border: 1px solid var(--cp5-border-soft);
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 10px;
  overflow: hidden;
}

.cp5-faq-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  padding: 14px 15px;
  font: inherit;
  font-size: 1rem;
  cursor: pointer;
}

.cp5-faq-body {
  padding: 0 15px 14px;
}

.cp5-footer {
  margin-top: var(--cp5-gutter);
  margin-left: var(--cp5-sidebar-width);
  padding: 18px var(--cp5-gutter) 20px;
  border-top: 1px solid var(--cp5-border-soft);
  background: rgba(8, 3, 13, 0.78);
}

.cp5-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.cp5-footer-nav a {
  color: var(--cp5-text-soft);
  border: 1px solid var(--cp5-border-soft);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.9rem;
}

.cp5-footer-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.cp5-footer p {
  margin: 0;
  color: var(--cp5-text-muted);
  line-height: 1.5;
  font-size: 0.88rem;
}

.cp5-floating-bonus {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  padding-right: 54px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(90deg, rgba(77, 23, 88, 0.98) 0%, rgba(31, 10, 42, 0.98) 100%);
  box-shadow: var(--cp5-shadow-strong);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cp5-floating-bonus.cp5-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cp5-floating-bonus p {
  margin: 0;
  color: #f4e7ff;
  font-size: 0.94rem;
  line-height: 1.4;
}

.cp5-floating-bonus .cp5-btn {
  min-width: 180px;
  min-height: 38px;
}

.cp5-floating-close {
  position: absolute;
  top: 9px;
  right: 10px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 8px;
  border: 1px solid var(--cp5-border-soft);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.cp5-demo-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  background: rgba(6, 2, 12, 0.86);
  padding: 18px;
}

.cp5-demo-modal.cp5-open {
  display: grid;
}

.cp5-demo-dialog {
  width: min(980px, 100%);
  max-height: 94vh;
  border-radius: 14px;
  border: 1px solid var(--cp5-border-soft);
  background: #17071e;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.cp5-demo-head,
.cp5-demo-foot {
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--cp5-border-soft);
}

.cp5-demo-foot {
  border-bottom: 0;
  border-top: 1px solid var(--cp5-border-soft);
}

.cp5-demo-close {
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.2rem;
}

.cp5-demo-frame-wrap {
  height: 100%;
  min-height: 60vh;
}

.cp5-demo-frame {
  width: 100%;
  height: 100%;
  min-height: 60vh;
  border: 0;
  display: block;
}

.cp5-service-main {
  margin-left: var(--cp5-sidebar-width);
  padding: var(--cp5-gutter);
}

.cp5-service-main section {
  margin-block: var(--cp5-section-gap);
}

.cp5-contact-form {
  display: grid;
  gap: 12px;
}

.cp5-contact-form .cp5-field input,
.cp5-contact-form .cp5-field textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--cp5-border-soft);
  background: rgba(10, 3, 14, 0.45);
  color: #fff;
  font: inherit;
  padding: 10px 12px;
}

.cp5-contact-form .cp5-field textarea {
  min-height: 130px;
  resize: vertical;
}

.cp5-form-status {
  margin: 0;
  font-size: 0.92rem;
  color: #d5ff95;
}

@media (max-width: 1279px) {
  .cp5-slot-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .cp5-main {
    padding-inline: 14px;
  }
}

@media (max-width: 1023px) {
  .cp5-sidebar {
    position: sticky;
    width: 100%;
    inset: 0;
    border-right: 0;
    border-bottom: 1px solid var(--cp5-border-soft);
    z-index: 30;
  }

  .cp5-sidebar-inner {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .cp5-logo-link {
    grid-area: auto;
    width: 138px;
    margin-inline: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .cp5-sidebar-cta {
    grid-area: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: min(420px, 100%);
  }

  .cp5-sidebar-cta .cp5-btn {
    min-width: 0;
    min-height: 44px;
    font-size: 0.86rem;
  }

  .cp5-sidebar-nav,
  .cp5-sidebar-disclaimer {
    display: none;
  }

  .cp5-main,
  .cp5-service-main,
  .cp5-footer {
    margin-left: 0;
  }

  .cp5-hero-card {
    width: min(920px, calc(100% - 2px));
  }

  .cp5-slot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .cp5-columns-2,
  .cp5-pros-cons,
  .cp5-calculator,
  .cp5-note-grid {
    grid-template-columns: 1fr;
  }

  .cp5-reviews {
    grid-template-columns: 28px 1fr 28px;
    gap: 8px;
  }

  .cp5-review-btn {
    width: 28px;
    min-width: 28px;
    min-height: 62px;
    border-radius: 8px;
    font-size: 1rem;
  }

  .cp5-demo-modal {
    padding: 0;
  }

  .cp5-cta-banner {
    padding: 10px;
  }

  .cp5-cta-card {
    width: calc(100% - 2px);
  }

  .cp5-demo-dialog {
    width: 100%;
    height: 100dvh;
    min-height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
  }

  .cp5-demo-head {
    padding-top: calc(10px + env(safe-area-inset-top));
  }

  .cp5-demo-foot {
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .cp5-demo-frame-wrap,
  .cp5-demo-frame {
    min-height: 0;
    height: 100%;
  }

  .cp5-floating-bonus {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "text close"
      "cta cta";
    align-items: center;
    gap: 8px 10px;
    padding: 10px 12px 12px;
    max-height: none;
  }

  .cp5-floating-bonus p {
    grid-area: text;
    font-size: 0.84rem;
    line-height: 1.28;
    max-width: 100%;
  }

  .cp5-floating-bonus [data-floating-bonus-cta] {
    grid-area: cta;
    width: 100%;
    min-width: 0;
    min-height: 36px;
    font-size: 0.86rem;
    padding: 8px 10px;
  }

  .cp5-floating-close {
    grid-area: close;
    position: static;
    justify-self: end;
    align-self: start;
  }
}

@media (max-width: 639px) {
  .cp5-main {
    padding-inline: 10px;
  }

  .cp5-main h2 {
    font-size: 1.24rem;
  }

  .cp5-hero-content {
    padding: 10px;
  }

  .cp5-hero-card {
    padding: 14px;
  }

  .cp5-hero h1 {
    font-size: 1.35rem;
  }

  .cp5-table th,
  .cp5-table td {
    padding: 9px 8px;
    font-size: 0.82rem;
    word-break: break-word;
  }

  .cp5-nav-toggle {
    font-size: 0.96rem;
  }

  .cp5-faq-toggle {
    font-size: 0.94rem;
  }
}
