/* ========================================================================== 
 * TRUE FBS — precision corrections approved for the landing page
 *
 * This module intentionally comes after the base, component, section and
 * responsive styles. It keeps the existing implementation intact and applies
 * only the exact brand, section, pricing and dialog corrections requested for
 * the final review build.
 * ========================================================================== */

:root {
  --header-height: 112px;
}

/* --------------------------------------------------------------------------
 * Header brand block
 * -------------------------------------------------------------------------- */
.site-header {
  height: var(--header-height);
}

.site-header__inner {
  min-height: 112px;
  padding-block: 24px;
}

.site-header .brand {
  gap: 16px;
}

.site-header .brand__mark {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(7, 136, 165, 0.24);
}

.site-header .brand__mark svg {
  width: 48px;
  height: 48px;
}

.site-header .brand__text {
  line-height: 1;
}

.site-header .brand__text strong {
  color: #0f172a;
  font-size: 24px;
  line-height: 28px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.site-header .brand__text small {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
 * Full-width Mini-WMS banner and corrected feature cards
 * -------------------------------------------------------------------------- */
.feature-card--full {
  grid-column: 1 / -1 !important;
  min-height: 318px;
  grid-template-columns: 64px minmax(0, 1.15fr) minmax(360px, 0.85fr) !important;
  align-items: center;
  gap: 30px;
  padding: 38px 42px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 82% 26%, rgba(88, 194, 222, 0.16), transparent 36%),
    linear-gradient(145deg, #ffffff, #f8fcfe);
}

.feature-card--full > .feature-icon {
  width: 64px;
  height: 64px;
  align-self: start;
  border-radius: 20px;
}

.feature-card--full > .feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-card--full .feature-card__copy {
  align-self: center;
  max-width: 650px;
}

.feature-card--full .feature-kicker {
  margin-bottom: 14px;
  font-size: 0.78rem;
}

.feature-card--full .feature-card__copy h3 {
  max-width: 620px;
  margin: 0 0 18px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
}

.feature-card--full .feature-card__copy p {
  max-width: 620px;
  font-size: 1.08rem;
  line-height: 1.62;
}

.feature-card--full .document-visual {
  justify-self: center;
  gap: 28px;
}

.feature-card--full .document-sheet {
  width: 138px;
  height: 168px;
  gap: 13px;
  padding: 29px 22px;
  border-radius: 19px;
  box-shadow: 0 24px 52px rgba(15, 49, 66, 0.15);
}

.feature-card--full .document-sheet span {
  height: 8px;
}

.feature-card--full .document-arrow {
  font-size: 2.2rem;
}

.feature-card--full .document-stock {
  width: 144px;
  height: 144px;
  border-radius: 32px;
  box-shadow: 0 24px 52px rgba(11, 149, 111, 0.15);
}

.feature-card--full .document-stock strong {
  font-size: 2.15rem;
}

.feature-card--full .document-stock small {
  font-size: 0.86rem;
}

.workflow-card:last-child h3 {
  max-width: 245px;
  font-size: 1.08rem;
  line-height: 1.16;
}

.marketplace-cards {
  max-width: 100%;
}

.marketplace-card {
  min-height: 310px;
  padding: 34px;
}

.marketplace-card li {
  font-size: 0.96rem;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
 * Pricing balance: equal overall height, larger right-side tariff cards
 * -------------------------------------------------------------------------- */
.pricing-layout {
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  align-items: stretch;
  gap: 28px;
}

.pricing-calculator,
.tier-list {
  min-height: 548px;
}

.pricing-calculator {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 28px 32px;
}

.pricing-calculator__head {
  margin-bottom: 20px;
}

.volume-value {
  margin-bottom: 20px;
}

.range-labels {
  margin-bottom: 22px;
}

.price-summary > div {
  padding: 13px 16px;
}

.price-total {
  margin-top: auto;
  padding: 16px 18px;
}

.tier-list {
  height: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.tier-card {
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 29px 28px;
  border-radius: 22px;
}

.tier-card__range {
  min-height: 44px;
  font-size: 0.8rem;
  line-height: 1.42;
}

.tier-card > div {
  margin: 18px 0 14px;
}

.tier-card strong {
  font-size: 2.3rem;
}

.tier-card small {
  font-size: 0.7rem;
}

.tier-card p {
  margin-top: auto;
  font-size: 0.84rem;
  line-height: 1.52;
}

/* --------------------------------------------------------------------------
 * Dialog shell — no nested scrollbars
 * -------------------------------------------------------------------------- */
.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 24px;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

.modal::-webkit-scrollbar {
  display: none;
}

.modal__backdrop {
  position: fixed;
  background: rgba(15, 23, 42, 0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal__panel,
.modal__panel--trial,
.modal__panel--auth,
.modal__panel--register {
  max-height: none !important;
  overflow: visible !important;
  margin: auto;
  border: 1px solid rgba(215, 227, 238, 0.96);
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 34px 90px rgba(15, 49, 66, 0.2);
}

.modal__panel--trial {
  width: min(760px, calc(100vw - 48px));
  padding: 40px 48px 36px;
}

.modal__panel--auth,
.modal__panel--register {
  width: min(520px, calc(100vw - 48px));
  padding: 40px 40px 32px;
}

.modal__close,
.modal__panel .modal__close {
  top: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #d9e5ee;
  border-radius: 18px;
  background: #ffffff;
  color: #475569;
  font-size: 0;
  box-shadow: 0 1px 2px rgba(12, 34, 53, 0.05);
}

.modal__close svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.modal__logo {
  margin-bottom: 20px;
}

.modal__logo .brand__mark {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(7, 136, 165, 0.24);
}

.modal__logo .brand__mark svg {
  width: 54px;
  height: 54px;
}

.modal__panel > .trial-badge {
  min-height: 36px;
  display: table;
  padding: 8px 18px;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: #e5f7fb;
  color: #0e8aa8;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}

.modal__panel h2 {
  max-width: 680px;
  margin: 0 auto 20px;
  color: #0f172a;
  font-size: 56px;
  line-height: 60px;
  font-weight: 800;
  letter-spacing: -0.045em;
  text-align: center;
}

.modal__panel > p:not(.auth-switch) {
  max-width: 560px;
  margin: 0 auto 28px;
  color: #64748b;
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  text-align: center;
}

/* Trial form */
.lead-form--trial {
  display: grid;
  gap: 14px;
}

.lead-form--trial > label.form-field > span,
.lead-form--trial .marketplace-choice-group > legend {
  display: block;
  margin-bottom: 10px;
  color: #334155;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
}

.lead-form--trial > label.form-field > div {
  min-height: 68px;
  gap: 18px;
  padding: 0 20px 0 18px;
  border: 1px solid #d7e3ee;
  border-radius: 20px;
  background: #ffffff;
}

.lead-form--trial > label.form-field svg {
  width: 20px;
  height: 20px;
  color: #64748b;
}

.lead-form--trial > label.form-field input:not([type="checkbox"]) {
  height: 66px;
  color: #0f172a;
  font-size: 16px;
  line-height: 24px;
}

.lead-form--trial > label.form-field input::placeholder {
  color: #94a3b8;
}

.marketplace-choice-group {
  display: block !important;
  margin: 0;
}

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

.choice {
  min-width: 0;
}

.choice span {
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 1.5px solid #cfe5ef;
  border-radius: 18px;
  background: #ffffff;
  color: #0f172a;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}

.choice span i {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1.5px solid #cbd5e1;
  border-radius: 50%;
}

.choice span i::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
}

.choice input:checked + span {
  border-color: #1199b6;
  background: #f0fbfe;
  color: #087c96;
}

.choice input:checked + span i {
  border-color: #1199b6;
}

.choice input:checked + span i::after {
  background: #1199b6;
}

.modal-submit {
  min-height: 72px;
  margin-top: 10px;
  border-radius: 22px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 800;
}

.modal-consent,
.lead-form > .modal-consent {
  margin: 4px auto 0;
  color: #64748b;
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  text-align: center;
}

.modal-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 0;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid #e5edf2;
  color: #64748b;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

.modal-legal a {
  position: relative;
  padding: 0 13px;
}

.modal-legal a + a::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 0;
  width: 1px;
  background: #d7e3ee;
}

.modal-legal a:hover {
  color: #0e8aa8;
}

/* Login and registration */
.modal__panel--auth .modal__logo,
.modal__panel--register .modal__logo {
  margin-bottom: 20px;
}

.modal__panel--auth h2,
.modal__panel--register h2 {
  margin-bottom: 10px;
  font-size: 52px;
  line-height: 56px;
}

.modal__panel > .auth-switch {
  max-width: none;
  margin: 0 auto 28px;
  color: #64748b;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  text-align: center;
}

.auth-switch button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #1677ff;
  cursor: pointer;
  font-weight: 700;
}

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

.auth-form .form-field--compact > div {
  min-height: 64px !important;
  gap: 16px;
  padding: 0 18px;
  border: 1px solid #d7e3ee;
  border-radius: 18px !important;
  background: #ffffff;
}

.auth-form .form-field--compact svg {
  width: 20px;
  height: 20px;
  color: #64748b;
}

.auth-form .form-field--compact input:not([type="checkbox"]) {
  height: 62px !important;
  color: #0f172a;
  font-size: 16px;
}

.auth-form .form-field--compact input::placeholder {
  color: #94a3b8;
}

.auth-submit {
  min-height: 64px;
  border: 0;
  border-radius: 18px;
  color: #ffffff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 800;
}

.auth-submit--muted {
  background: #aab2bf;
  box-shadow: none;
}

.auth-submit--muted.is-ready {
  background: linear-gradient(135deg, #06748c, #0a9bb7);
  box-shadow: 0 13px 28px rgba(7, 136, 165, 0.22);
}

.auth-submit--primary {
  margin-top: 4px;
  background: linear-gradient(135deg, #2d6df4, #1677ff);
  box-shadow: 0 14px 30px rgba(22, 119, 255, 0.2);
}

.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  min-height: 32px;
  color: #94a3b8;
  font-size: 16px;
  line-height: 24px;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  background: #e2e8f0;
}

.auth-divider span {
  grid-column: 2;
}

.auth-alt-button {
  min-height: 60px;
  display: grid;
  grid-template-columns: 24px 1fr 24px;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid #d7e3ee;
  border-radius: 18px;
  background: #ffffff;
  color: #334155;
  cursor: pointer;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
}

.auth-alt-button svg {
  width: 20px;
  height: 20px;
}

.auth-alt-button span {
  grid-column: 2;
  text-align: center;
}

.auth-form .modal-consent {
  margin-top: 8px;
}

.auth-form .modal-legal {
  margin-top: 2px;
}

.modal__panel--register .auth-form {
  gap: 14px;
}

.modal__panel--register .modal-consent {
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
 * Height-aware desktop compaction keeps the trial window inside a 900px view.
 * -------------------------------------------------------------------------- */
@media (max-height: 1000px) and (min-width: 768px) {
  .modal {
    padding-block: 18px;
  }

  .modal__panel--trial {
    padding: 22px 40px 20px;
  }

  .modal__panel--trial .modal__close {
    top: 16px;
    right: 16px;
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

  .modal__panel--trial .modal__logo {
    margin-bottom: 8px;
  }

  .modal__panel--trial .modal__logo .brand__mark {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .modal__panel--trial .modal__logo .brand__mark svg {
    width: 40px;
    height: 40px;
  }

  .modal__panel--trial > .trial-badge {
    min-height: 30px;
    padding: 5px 14px;
    margin-bottom: 8px;
    font-size: 14px;
  }

  .modal__panel--trial h2 {
    margin-bottom: 8px;
    font-size: 40px;
    line-height: 44px;
  }

  .modal__panel--trial > p {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 22px;
  }

  .modal__panel--trial .lead-form {
    gap: 8px;
  }

  .modal__panel--trial .lead-form > label.form-field > span,
  .modal__panel--trial .marketplace-choice-group > legend {
    margin-bottom: 4px;
    font-size: 13px;
    line-height: 17px;
  }

  .modal__panel--trial .lead-form > label.form-field > div {
    min-height: 52px;
    border-radius: 15px;
  }

  .modal__panel--trial .lead-form > label.form-field input:not([type="checkbox"]) {
    height: 50px;
  }

  .modal__panel--trial .choice span {
    min-height: 48px;
    border-radius: 15px;
    font-size: 15px;
  }

  .modal__panel--trial .modal-submit {
    min-height: 56px;
    margin-top: 2px;
    border-radius: 18px;
    font-size: 17px;
  }

  .modal__panel--trial .modal-consent {
    font-size: 12px;
    line-height: 17px;
  }

  .modal__panel--trial .modal-legal {
    margin-top: 0;
    padding-top: 9px;
    font-size: 12px;
    line-height: 17px;
  }
}

/* --------------------------------------------------------------------------
 * Responsive layout
 * -------------------------------------------------------------------------- */
@media (max-width: 1180px) {
  :root {
    --header-height: 96px;
  }

  .site-header__inner {
    min-height: 96px;
    padding-block: 16px;
  }

  .site-header .brand__mark {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .site-header .brand__mark svg {
    width: 43px;
    height: 43px;
  }

  .site-header .brand__text strong {
    font-size: 21px;
    line-height: 25px;
  }

  .site-header .brand__text small {
    font-size: 14px;
    line-height: 19px;
  }

  .feature-card--full {
    grid-template-columns: 58px minmax(0, 1fr) minmax(310px, 0.82fr) !important;
    gap: 24px;
    padding: 34px;
  }
}

@media (max-width: 1020px) {
  :root {
    --header-height: 92px;
  }

  .site-header__inner {
    min-height: 92px;
  }

  .feature-card--full {
    grid-template-columns: 54px minmax(0, 1fr) minmax(260px, 0.75fr) !important;
  }

  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .pricing-calculator,
  .tier-list {
    min-height: 0;
  }

  .tier-list {
    grid-template-rows: none;
  }

  .tier-card {
    min-height: 220px;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 84px;
  }

  .site-header__inner {
    min-height: 84px;
    padding-block: 12px;
  }

  .site-header .brand {
    gap: 11px;
  }

  .site-header .brand__mark {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .site-header .brand__mark svg {
    width: 37px;
    height: 37px;
  }

  .site-header .brand__text strong {
    font-size: 18px;
    line-height: 22px;
  }

  .site-header .brand__text small {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    line-height: 16px;
  }

  .feature-card--full {
    min-height: 0;
    grid-template-columns: 48px 1fr !important;
    gap: 18px;
    padding: 26px;
  }

  .feature-card--full > .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .feature-card--full .feature-card__copy h3 {
    font-size: 1.8rem;
  }

  .feature-card--full .feature-card__copy p {
    font-size: 0.96rem;
  }

  .feature-card--full .document-visual {
    grid-column: 1 / -1;
    justify-self: center;
    gap: 18px;
  }

  .feature-card--full .document-sheet {
    width: 104px;
    height: 130px;
  }

  .feature-card--full .document-stock {
    width: 112px;
    height: 112px;
  }

  .pricing-calculator,
  .tier-list {
    min-height: 0;
  }

  .tier-card {
    min-height: 205px;
  }

  .modal {
    align-items: flex-start;
    padding: 12px;
  }

  .modal__panel,
  .modal__panel--trial,
  .modal__panel--auth,
  .modal__panel--register {
    width: calc(100vw - 24px);
    margin: 0;
    padding: 18px 16px 18px;
    border-radius: 24px;
  }

  .modal__close,
  .modal__panel .modal__close {
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    border-radius: 15px;
  }

  .modal__close svg {
    width: 20px;
    height: 20px;
  }

  .modal__logo {
    margin-bottom: 8px;
  }

  .modal__logo .brand__mark {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .modal__logo .brand__mark svg {
    width: 40px;
    height: 40px;
  }

  .modal__panel > .trial-badge {
    min-height: 28px;
    margin-bottom: 8px;
    padding: 4px 12px;
    font-size: 13px;
    line-height: 18px;
  }

  .modal__panel h2,
  .modal__panel--auth h2,
  .modal__panel--register h2 {
    max-width: 100%;
    margin-bottom: 8px;
    padding-inline: 30px;
    font-size: 34px;
    line-height: 38px;
  }

  .modal__panel > p:not(.auth-switch) {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 21px;
  }

  .modal__panel > .auth-switch {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 20px;
  }

  .lead-form--trial,
  .auth-form {
    gap: 7px;
  }

  .lead-form--trial > label.form-field > span,
  .lead-form--trial .marketplace-choice-group > legend {
    margin-bottom: 3px;
    font-size: 12px;
    line-height: 16px;
  }

  .lead-form--trial > label.form-field > div,
  .auth-form .form-field--compact > div {
    min-height: 50px !important;
    gap: 13px;
    padding: 0 14px;
    border-radius: 15px !important;
  }

  .lead-form--trial > label.form-field input:not([type="checkbox"]),
  .auth-form .form-field--compact input:not([type="checkbox"]) {
    height: 48px !important;
    font-size: 14px;
  }

  .choice-grid {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .choice span {
    min-height: 46px;
    border-radius: 15px;
    font-size: 15px;
  }

  .modal-submit,
  .auth-submit {
    min-height: 54px;
    margin-top: 0;
    border-radius: 17px;
    font-size: 16px;
  }

  .auth-divider {
    min-height: 24px;
    font-size: 13px;
  }

  .auth-alt-button {
    min-height: 50px;
    border-radius: 15px;
    font-size: 14px;
  }

  .modal-consent,
  .lead-form > .modal-consent {
    font-size: 11px;
    line-height: 16px;
  }

  .modal-legal {
    gap: 5px 0;
    margin-top: 0;
    padding-top: 8px;
    font-size: 11px;
    line-height: 16px;
  }

  .modal-legal a {
    width: 50%;
    padding: 0 7px;
  }

  .modal-legal a:nth-child(3)::before {
    display: none;
  }
}

@media (max-width: 420px) {
  .site-header .brand__text small {
    display: none;
  }

  .modal__panel h2,
  .modal__panel--auth h2,
  .modal__panel--register h2 {
    font-size: 31px;
    line-height: 35px;
  }
}

/* --------------------------------------------------------------------------
 * Compact short-phone viewport: the complete trial form remains visible.
 * This only activates on genuinely short mobile screens; regular mobile
 * dimensions keep the roomier approved spacing above.
 * -------------------------------------------------------------------------- */
@media (max-width: 767px) and (max-height: 880px) {
  .modal--trial {
    align-items: flex-start;
    padding: 8px 12px;
  }

  .modal__panel--trial {
    width: calc(100vw - 24px);
    padding: 12px 16px 12px;
    border-radius: 22px;
  }

  .modal__panel--trial .modal__close {
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .modal__panel--trial .modal__close svg {
    width: 18px;
    height: 18px;
  }

  .modal__panel--trial .modal__logo {
    margin-bottom: 4px;
  }

  .modal__panel--trial .modal__logo .brand__mark {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

  .modal__panel--trial .modal__logo .brand__mark svg {
    width: 35px;
    height: 35px;
  }

  .modal__panel--trial > .trial-badge {
    min-height: 26px;
    margin-bottom: 4px;
    padding: 3px 11px;
    font-size: 12px;
    line-height: 18px;
  }

  .modal__panel--trial h2 {
    max-width: 310px;
    margin-bottom: 5px;
    padding-inline: 20px;
    font-size: 29px;
    line-height: 32px;
  }

  .modal__panel--trial > p:not(.auth-switch) {
    max-width: 330px;
    margin-bottom: 6px;
    font-size: 12.5px;
    line-height: 18px;
  }

  .modal__panel--trial .lead-form {
    gap: 4px;
  }

  .modal__panel--trial .lead-form > label.form-field > span,
  .modal__panel--trial .marketplace-choice-group > legend {
    margin-bottom: 2px;
    font-size: 11px;
    line-height: 14px;
  }

  .modal__panel--trial .lead-form > label.form-field > div {
    min-height: 44px !important;
    padding-inline: 13px;
    border-radius: 13px !important;
  }

  .modal__panel--trial .lead-form > label.form-field input:not([type="checkbox"]) {
    height: 42px !important;
    font-size: 13px;
  }

  .modal__panel--trial .choice-grid {
    gap: 5px;
  }

  .modal__panel--trial .choice span {
    min-height: 40px;
    border-radius: 13px;
    font-size: 13px;
  }

  .modal__panel--trial .modal-submit {
    min-height: 48px;
    border-radius: 15px;
    font-size: 14px;
  }

  .modal__panel--trial .modal-consent {
    margin-top: 1px;
    font-size: 10px;
    line-height: 13px;
  }

  .modal__panel--trial .modal-legal {
    gap: 2px 0;
    margin-top: 0;
    padding-top: 5px;
    font-size: 9.5px;
    line-height: 12px;
  }

  .modal__panel--trial .modal-legal a {
    padding-inline: 4px;
  }
}
