/* -- Tokens ------------------------------------------------ */
/* Close the shared content shell around this short page. The page layout
   provides its own controlled bottom breathing room before the footer, while
   the footer keeps its native background and internal spacing. */
body.joinfree-page .main-wrapper,
body.joinfree-page .main-content {
  width: 100%;
  max-width: none;
  min-height: 0;
  height: auto;
  margin-bottom: 0;
  padding-bottom: 0;
}
body.joinfree-page .mp-footer {
  margin-top: 0;
}
.jfp-root {
  --jfp-blue: var(--mp-color-brand);
  --jfp-blue-dark: var(--mp-color-brand-hover);
  --jfp-blue-soft: var(--mp-color-brand-soft);
  --jfp-ink: var(--mp-color-text-strong);
  --jfp-ink-2: var(--mp-color-text-secondary);
  --jfp-ink-3: var(--mp-color-text-muted);
  --jfp-rule: var(--mp-color-divider);
  --jfp-card: var(--mp-color-surface);
  --jfp-sans: var(--mp-font-sans);

  font-family: var(--jfp-sans);
  color: var(--jfp-ink);
  padding-top: 0;
  min-height: 0;
  height: auto;
  margin-bottom: 0;
  padding-bottom: 0;
  overflow: visible;
}

/* -- Two-column layout ------------------------------------- */
.jfp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  width: calc(100% - (var(--mp-page-gutter-inline) * 2));
  max-width: none;
  margin: 0.5rem auto 40px;
  padding: 0;
  align-items: stretch;
}

/* -- Left: CTA column ---------------------------------------
   Headline + form now live inside one flat white card, matching
   the site-wide "flat white box on light gray" pattern. */
.jfp-form-col {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.jfp-form-col > .jfp-card {
  flex: 1 1 auto;
}

.jfp-form-heading {
  --jfp-kicker-size: clamp(1.16rem, 2.2vw, 1.55rem);
  --jfp-headline-size: clamp(0.98rem, 1.85vw, 1.28rem);
  text-align: center;
  margin: 0 0 30px;
}
.jfp-kicker,
.jfp-headline {
  font-family: var(--jfp-sans);
  line-height: 1.18;
  white-space: nowrap;
}
.jfp-kicker {
  margin: 0 0 7px;
  font-size: var(--jfp-kicker-size);
  font-weight: 500;
  letter-spacing: -0.014em;
  text-transform: none;
  color: var(--jfp-ink);
}
.jfp-headline {
  font-size: var(--jfp-headline-size);
  font-weight: 400;
  color: var(--jfp-ink);
  margin: 0;
  letter-spacing: -0.008em;
}
.jfp-headline em,
.jfp-benefits-headline em {
  font-style: italic;
  color: var(--jfp-blue);
}
/* -- Form card --------------------------------------------- */
.jfp-card {
  background: var(--jfp-card);
  border-radius: var(--mp-radius-lg);
  padding: 36px;
}
#jfFormPanel {
  padding-bottom: 22px;
}

/* -- Form layout ------------------------------------------- */
#joinfreeForm {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  width: 100%;
  align-items: stretch;
  text-align: left;
}

/* -- Icon-led form fields ---------------------------------- */
.jfp-float-field {
  position: relative;
  margin-bottom: 14px;
}
.jfp-field-icon {
  position: absolute;
  z-index: 2;
  left: 1px;
  top: 1px;
  width: 62px;
  height: 60px;
  border-radius: var(--mp-radius-md) 0 0 var(--mp-radius-md);
  border-right: 1px solid var(--mp-color-border);
  background: linear-gradient(
    180deg,
    var(--mp-color-brand-tint) 0%,
    var(--mp-color-brand-soft) 100%
  );
  color: var(--jfp-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition:
    background-color var(--mp-motion-standard) ease,
    color var(--mp-motion-standard) ease;
}
.jfp-field-icon svg {
  width: 25px;
  height: 25px;
  display: block;
}
.jfp-float-field input {
  width: 100%;
  height: 62px;
  padding: 23px 18px 6px 80px;
  border: 1px solid var(--mp-color-border-strong);
  border-radius: var(--mp-radius-md);
  background: var(--mp-color-surface);

  font-family: var(--jfp-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--jfp-ink);
  text-align: left;
  display: block;
  -webkit-appearance: none;
  appearance: none;
  transition:
    border-color var(--mp-motion-standard) ease,
    box-shadow var(--mp-motion-standard) ease,
    background-color var(--mp-motion-standard) ease;
}
.jfp-float-label {
  position: absolute;
  z-index: 1;
  left: 80px;
  right: 16px;
  top: 31px;
  transform: translateY(-50%);
  font-size: 0.95rem;
  font-weight: 400;
  font-family: var(--jfp-sans);
  line-height: 1.35;
  color: var(--mp-color-text-subtle);
  text-align: left;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition:
    top var(--mp-motion-fast) ease,
    transform var(--mp-motion-fast) ease,
    font-size var(--mp-motion-fast) ease,
    color var(--mp-motion-fast) ease;
}
.jfp-float-field input:focus + .jfp-float-label,
.jfp-float-field input.jfp-has-value + .jfp-float-label,
.jfp-float-field input:not(:placeholder-shown) + .jfp-float-label {
  top: 7px;
  transform: none;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--mp-color-text-subtle);
}
.jfp-float-field input::placeholder {
  color: transparent;
}
.jfp-float-field input:focus {
  border-color: var(--mp-color-brand);
  box-shadow: 0 0 0 4px rgba(40, 90, 211, 0.1);
  outline: none;
  background: var(--mp-color-surface);
}

.jfp-float-field input:focus-visible {
  outline: 3px solid var(--mp-color-brand);
  outline-offset: 2px;
}
.jfp-float-field:focus-within .jfp-field-icon {
  background: var(--mp-color-brand-soft);
  color: var(--jfp-blue-dark);
}
.jfp-float-field input.jfp-error {
  border-color: var(--mp-color-danger);
  background: var(--mp-color-danger-soft);
}
.jfp-float-field input.jfp-error + .jfp-float-label {
  color: var(--mp-color-danger);
}

/* Field errors */
.jfp-field-error {
  display: none;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--mp-color-danger);
  margin-top: 5px;
  font-family: var(--jfp-sans);
}
.jfp-field-error.visible {
  display: flex;
}

/* Newsletter checkbox */
.jfp-newsletter-opt {
  margin: 0 0 18px;
  display: flex;
  justify-content: center;
}
.jfp-checkbox-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--jfp-ink-3);
  font-family: var(--jfp-sans);
  line-height: 1.5;
  text-align: center;
}
.jfp-checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 0;
  accent-color: var(--jfp-blue);
  flex-shrink: 0;
  cursor: pointer;
}

/* Honeypot field: hidden from people, present for spam bots */
.jfp-hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Server error */
.jfp-server-error {
  font-size: 0.85rem;
  color: var(--mp-color-danger);
  background: var(--mp-color-danger-soft);
  border: 1px solid var(--mp-color-danger-border);
  border-radius: var(--mp-radius-sm);
  padding: 10px 14px;
  margin-bottom: 14px;
  font-family: var(--jfp-sans);
}

/* Submit button */
.jfp-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  height: 60px;
  padding: 0 18px;
  background: var(--mp-color-text);
  color: var(--mp-color-surface);
  border: 1px solid transparent;
  border-radius: var(--mp-radius-md);
  font-family: var(--jfp-sans);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.01em;
  box-shadow: none;
  transition:
    background-color var(--mp-motion-fast) ease,
    border-color var(--mp-motion-fast) ease,
    transform var(--mp-motion-fast) ease;
}
.jfp-submit-btn,
.jfp-submit-btn * {
  cursor: pointer;
}
.jfp-submit-btn:disabled,
.jfp-submit-btn:disabled * {
  cursor: not-allowed;
}

.jfp-submit-btn:hover {
  background: var(--mp-color-text);
  border-color: var(--mp-color-text-muted);
  box-shadow: none;
}
.jfp-submit-btn:focus-visible {
  outline: 3px solid rgba(36, 49, 71, 0.22);
  outline-offset: 3px;
}
.jfp-submit-btn:active {
  background: var(--mp-color-text-strong);
  border-color: var(--mp-color-text-muted);
  box-shadow: none;
  transform: scale(0.97);
}
.jfp-submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.jfp-submit-arrow {
  flex: 0 0 auto;
  opacity: 0.86;
}

.jfp-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--mp-color-surface);
  border-radius: 50%;
  animation: jfp-spin 0.7s linear infinite;
}
@keyframes jfp-spin {
  to {
    transform: rotate(360deg);
  }
}

.jfp-server-error[hidden],
.jfp-spinner[hidden],
.jfp-success-card[hidden],
.jfp-info-block[hidden] {
  display: none;
}

.jfp-assurances {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  width: 100%;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  color: var(--mp-color-text-subtle);
  font-family: var(--jfp-sans);
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.4;
}
.jfp-assurance-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: 0;
  padding: 6px 20px;
  text-align: left;
}
.jfp-assurance-item:first-child {
  padding-left: 0;
}
.jfp-assurance-item:last-child {
  padding-right: 0;
}
.jfp-assurance-item + .jfp-assurance-item {
  border-left: 1px solid var(--mp-color-border);
}
.jfp-assurance-item > span:last-child {
  min-width: 0;
}

/* -- Success card ------------------------------------------ */
.jfp-success-card {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.jfp-success-inner {
  width: 100%;
}
.jfp-success-check {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--jfp-blue-soft);
  color: var(--jfp-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.jfp-success-title {
  font-family: var(--jfp-sans);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--jfp-ink);
  margin: 0 0 10px;
}

.jfp-info-block {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--jfp-rule);
  border-radius: var(--mp-radius-md);
  background: var(--mp-color-surface-soft);
  padding: 16px;
  margin-bottom: 14px;
  text-align: left;
}
.jfp-info-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--mp-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
}
.jfp-info-icon svg {
  width: 32px;
  height: 32px;
  display: block;
}
.jfp-info-block-teal .jfp-info-icon {
  background: var(--mp-color-accent-cyan-soft);
  color: var(--mp-color-accent-cyan);
}
.jfp-info-block-blue .jfp-info-icon {
  background: var(--jfp-blue-soft);
  color: var(--jfp-blue);
}
.jfp-info-copy {
  min-width: 0;
  padding-top: 0;
}
.jfp-info-block-title {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--jfp-ink);
  margin: 0 0 4px;
  font-family: var(--jfp-sans);
  text-align: left;
}
.jfp-info-block-text {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--jfp-ink-2);
  margin: 0;
  font-family: var(--jfp-sans);
  text-align: left;
}

.jfp-return-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--jfp-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--jfp-blue);
  text-decoration: none;
}
.jfp-return-link:hover {
  text-decoration: underline;
}

/* -- Right: benefits column ----------------------------------
   Wrapped in its own flat white card so it sits as a matching
   box next to the CTA card on desktop. */
.jfp-benefits-col {
  padding-left: 0;
  padding-top: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.jfp-benefits-col > .jfp-card {
  flex: 1 1 auto;
}
.jfp-benefits-card {
  height: 100%;
}

.jfp-benefits-headline {
  --jfp-benefits-line-size: clamp(1.16rem, 2.2vw, 1.55rem);
  font-family: var(--jfp-sans);
  color: var(--jfp-ink);
  margin: 0 0 24px;
}
.jfp-benefits-title-line,
.jfp-benefits-subtitle-line {
  display: block;
  white-space: nowrap;
}
.jfp-benefits-title-line,
.jfp-benefits-subtitle-line {
  font-size: var(--jfp-benefits-line-size);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.014em;
}
.jfp-benefits-subtitle-line {
  margin-top: 2px;
}

.jfp-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 0;
}
.jfp-benefit {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--jfp-rule);
  text-align: left;
}
.jfp-benefit:first-child {
  border-top: 0;
}
.jfp-benefit:last-child {
  border-bottom: 0;
}
.jfp-benefit-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--mp-color-surface);
  border: 1px solid var(--mp-color-brand-border);
  color: var(--jfp-blue);
  box-shadow:
    0 8px 22px rgba(40, 90, 211, 0.1),
    0 2px 6px rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 58px;
}
.jfp-benefit-icon svg {
  width: 30px;
  height: 30px;
  display: block;
}
.jfp-benefit-text {
  flex: 1;
  min-width: 0;
  text-align: left;
}
.jfp-benefit-title {
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--jfp-ink);
  margin: 0 0 3px;
  font-family: var(--jfp-sans);
  line-height: 1.3;
}
.jfp-benefit-body {
  text-align: left;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--jfp-ink-3);
  margin: 0;
  font-family: var(--jfp-sans);
}
.jfp-benefit-copy-desktop,
.jfp-benefit-copy-mobile {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.jfp-benefit-copy-mobile {
  display: none;
}



/* Desktop-only shell sizing.
   Keep tablet and mobile exactly on the existing responsive rules. */
@media (min-width: 1367px) {
  body.joinfree-page .jfp-layout {
    width: calc(100% - (var(--mp-page-gutter-inline) * 2));
    max-width: 1032px;
    gap: 18px;
    margin-top: 32px;
    margin-bottom: 32px;
  }

  body.joinfree-page .jfp-form-col,
  body.joinfree-page .jfp-benefits-col,
  body.joinfree-page .jfp-card {
    min-width: 0;
  }

  body.joinfree-page .jfp-card {
    padding: 30px;
  }

  body.joinfree-page #jfFormPanel {
    padding-bottom: 18px;
  }

  body.joinfree-page .jfp-form-heading {
    --jfp-kicker-size: clamp(1.32rem, 1.42vw, 1.48rem);
    --jfp-headline-size: clamp(1.04rem, 1.08vw, 1.14rem);
    margin-bottom: 26px;
  }

  body.joinfree-page .jfp-kicker {
    margin-bottom: 9px;
  }

  body.joinfree-page .jfp-kicker,
  body.joinfree-page .jfp-headline {
    line-height: 1.18;
  }

  body.joinfree-page .jfp-float-field {
    margin-bottom: 12px;
  }

  body.joinfree-page .jfp-field-icon {
    width: 58px;
    height: 56px;
  }

  body.joinfree-page .jfp-field-icon svg {
    width: 23px;
    height: 23px;
  }

  body.joinfree-page .jfp-float-field input {
    height: 58px;
    padding: 22px 16px 6px 74px;
    font-size: 0.95rem;
  }

  body.joinfree-page .jfp-float-label {
    left: 74px;
    right: 14px;
    top: 29px;
    font-size: 0.9rem;
  }

  body.joinfree-page .jfp-newsletter-opt {
    margin-bottom: 14px;
  }

  body.joinfree-page .jfp-checkbox-label {
    gap: 8px;
    font-size: 0.82rem;
  }

  body.joinfree-page .jfp-submit-btn {
    height: 56px;
    font-size: 0.96rem;
  }

  body.joinfree-page .jfp-assurances {
    margin-top: 10px;
    font-size: 0.82rem;
  }

  body.joinfree-page .jfp-assurance-item {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  body.joinfree-page .jfp-benefits-headline {
    --jfp-benefits-line-size: clamp(1.32rem, 1.42vw, 1.48rem);
    margin-bottom: 18px;
  }

  body.joinfree-page .jfp-benefit {
    gap: 13px;
    padding: 18px 0;
  }

  body.joinfree-page .jfp-benefit-icon {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  body.joinfree-page .jfp-benefit-icon svg {
    width: 26px;
    height: 26px;
  }

  body.joinfree-page .jfp-benefit-title {
    font-size: 0.85rem;
    margin-bottom: 2px;
  }

  body.joinfree-page .jfp-benefit-body {
    max-width: 390px;
    font-size: 0.79rem;
    line-height: 1.5;
  }
}

/* -- Responsive -------------------------------------------- */
@media (max-width: 699px) {
  body.joinfree-page .mp-footer {
    margin-top: 0;
  }
  .jfp-layout {
    grid-template-columns: 1fr;
    width: calc(100% - (var(--mp-page-gutter-inline) * 2));
    max-width: none;
    margin: 0 auto 24px;
    padding: 0;
    gap: 20px;
  }
  .jfp-form-heading {
    --jfp-kicker-size: clamp(1.2rem, 5.2vw, 1.48rem);
    --jfp-headline-size: clamp(1rem, 4.25vw, 1.17rem);
  }
  .jfp-benefits-headline {
    --jfp-benefits-line-size: clamp(1.2rem, 5.2vw, 1.48rem);
  }
  .jfp-headline {
    width: 100%;
  }
}

/* Tablet shell geometry: one width-based contract shared with the topnav and footer. */
@media (min-width: 700px) and (max-width: 1366px) {
  body.joinfree-page > .main-wrapper > .main-content {
    width: 100%;
    max-width: none;
    padding-right: 0;
    padding-left: 0;
  }
  body.joinfree-page .jfp-layout {
    width: calc(100% - (var(--mp-page-gutter-inline) * 2));
    max-width: none;
    margin: 4px auto 30px;
    padding: 0;

    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 24px);
    align-items: stretch;
  }
  body.joinfree-page .jfp-form-col,
  body.joinfree-page .jfp-benefits-col,
  body.joinfree-page .jfp-card {
    width: auto;
    max-width: none;
    min-width: 0;
  }
}

/* Compact portrait tablets need smaller internal controls, not narrower
   outer columns. */
@media (min-width: 700px) and (max-width: 900px) {
  .jfp-card {
    padding: 24px 20px;
  }
  #jfFormPanel {
    padding-bottom: 18px;
  }
  .jfp-form-heading {
    --jfp-kicker-size: clamp(1.04rem, 2.3vw, 1.18rem);
    --jfp-headline-size: clamp(0.88rem, 1.95vw, 1rem);
    margin-bottom: 22px;
  }
  .jfp-kicker {
    margin-bottom: 7px;
  }
  .jfp-kicker,
  .jfp-headline {
    line-height: 1.18;
  }
  .jfp-float-field {
    margin-bottom: 12px;
  }
  .jfp-field-icon {
    width: 54px;
    height: 56px;
  }
  .jfp-field-icon svg {
    width: 23px;
    height: 23px;
  }
  .jfp-float-field input {
    height: 58px;
    padding-left: 70px;
    padding-right: 14px;
    font-size: 1rem;
  }
  .jfp-float-label {
    left: 70px;
    right: 12px;
    top: 29px;
    font-size: 0.88rem;
  }
  .jfp-newsletter-opt {
    margin-bottom: 15px;
  }
  .jfp-checkbox-label {
    gap: 8px;
    font-size: 0.78rem;
  }
  .jfp-submit-btn {
    height: 56px;
    gap: 7px;
    padding: 0 12px;
    font-size: 0.92rem;
  }
  .jfp-assurances {
    margin-top: 10px;
    font-size: 0.75rem;
  }
  .jfp-assurance-item {
    padding: 6px 8px;
  }
  .jfp-benefits-headline {
    --jfp-benefits-line-size: clamp(1.04rem, 2.3vw, 1.18rem);
    margin-bottom: 16px;
  }
  .jfp-benefit {
    gap: 12px;
    padding: 18px 0;
  }
  .jfp-benefit-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }
  .jfp-benefit-icon svg {
    width: 24px;
    height: 24px;
  }
  .jfp-benefit-title {
    margin-bottom: 2px;
    font-size: 0.82rem;
  }
  .jfp-benefit-body {
    font-size: 0.77rem;
    line-height: 1.45;
  }
  .jfp-benefit-copy-desktop {
    display: none;
  }
  .jfp-benefit-copy-mobile {
    display: -webkit-box;
  }
}

/* Medium and large portrait tablets retain comfortable card interiors while
   the outer grid remains flush with the shared page gutters. */
@media (min-width: 901px) and (max-width: 1366px) and (orientation: portrait) {
  .jfp-card {
    padding: 30px;
  }
  #jfFormPanel {
    padding-bottom: 22px;
  }
  .jfp-form-heading {
    --jfp-kicker-size: clamp(1.18rem, 1.8vw, 1.38rem);
    --jfp-headline-size: clamp(0.98rem, 1.5vw, 1.12rem);
    margin-bottom: 24px;
  }
  .jfp-benefits-headline {
    --jfp-benefits-line-size: clamp(1.18rem, 1.8vw, 1.38rem);
    margin-bottom: 20px;
  }
  .jfp-benefit {
    gap: 15px;
    padding: 20px 0;
  }
}

@media (max-width: 560px) {
  .jfp-form-col,
  .jfp-card,
  #joinfreeForm,
  .jfp-benefits-col {
    width: 100%;
    max-width: none;
  }
  .jfp-benefits-list {
    margin-bottom: 0;
  }
  .jfp-form-heading {
    --jfp-kicker-size: clamp(1.2rem, 5.2vw, 1.48rem);
    --jfp-headline-size: clamp(1rem, 4.25vw, 1.17rem);
    margin-bottom: 24px;
  }
  .jfp-kicker {
    margin-bottom: 7px;
  }
  .jfp-headline {
    width: 100%;
  }
  .jfp-card {
    padding: 24px 18px;
  }
  #jfFormPanel {
    padding-bottom: 16px;
  }
  .jfp-field-icon {
    width: 56px;
  }
  .jfp-float-field input {
    padding-left: 72px;
  }
  .jfp-float-label {
    left: 72px;
  }
  .jfp-benefit {
    gap: 15px;
    padding: 24px 0;
  }
  .jfp-benefit-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }
  .jfp-benefit-icon svg {
    width: 27px;
    height: 27px;
  }
  .jfp-benefit-body {
    font-size: 0.84rem;
    line-height: 1.5;
  }
  .jfp-benefit-copy-desktop {
    display: none;
  }
  .jfp-benefit-copy-mobile {
    display: -webkit-box;
  }
  .jfp-assurances {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 14px;
    font-size: clamp(0.76rem, 3.2vw, 0.84rem);
  }
  .jfp-assurance-item {
    justify-content: center;
    gap: 0;
    padding: 8px 5px;
    white-space: nowrap;
  }
  .jfp-assurance-item:first-child {
    padding-left: 0;
  }
  .jfp-assurance-item:last-child {
    padding-right: 0;
  }
  .jfp-assurance-item + .jfp-assurance-item {
    border-left: 1px solid var(--mp-color-border);
    border-top: 0;
  }
}

@media (max-width: 380px) {
  .jfp-form-heading {
    --jfp-kicker-size: clamp(1.02rem, 4.8vw, 1.16rem);
    --jfp-headline-size: clamp(0.88rem, 4vw, 0.98rem);
  }
  .jfp-benefits-headline {
    --jfp-benefits-line-size: clamp(1.02rem, 4.8vw, 1.16rem);
  }
}

@media (forced-colors: active) {
  .jfp-float-field input:focus-visible,
  .jfp-submit-btn:focus-visible {
    outline: 3px solid Highlight;
    outline-offset: 3px;
    box-shadow: none;
  }
}
