/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 91:0 Unexpected "<"

**/
<style>
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

  /* чтобы не было белого фона "вокруг" */
  html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background: #485671;
  }

  /* пробиваемся наружу из .page-width / .rte контейнеров Shopify */
  .pn-step1-wrap{
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    min-height: 100svh; /* лучше для мобилок */
    background: #485671;
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 28px 16px;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .pn-step1-center{
    width: 100%;
    max-width: 380px;
    text-align: center;
  }

  .pn-step1-title{
    margin: 0 0 10px 0;
    color: #EEF2F7;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.2px;
  }

  .pn-step1-subtitle{
    margin: 0 0 22px 0;
    color: rgba(238,242,247,0.85);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
  }
  .pn-step1-center p {
  margin: 0;
  }

  .pn-step1-btn{
    display: block;
    width: 100%;
    max-width: 340px;
    margin: 18px auto;
    padding: 16px 18px;

    background: #CF5F4B;
    color: #F9F5F3;
    text-decoration: none;

    border-radius: 14px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.2px;

    box-shadow: 0 10px 22px rgba(0,0,0,0.18);
    transition: transform .08s ease, filter .15s ease;
    user-select: none;
    box-sizing: border-box;
  }

  .pn-step1-btn:hover{ filter: brightness(1.03); }
  .pn-step1-btn:active{ transform: translateY(1px); }

  @media (max-width: 380px){
    .pn-step1-title{ font-size: 24px; }
    .pn-step1-center{ max-width: 340px; }
  }
</style>