@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:wght@100..1000&display=swap');

:root {
    --muyslcard-black: #000000;
    --muyslcard-white: #ffffff;
    --muyslcard-dark-gray: #1c1c1c;
    --muyslcard-gray: #9b9b9b;
    --muyslcard-soft-white: #fafafa;

    --muyslcard-safe-x: clamp(22px, 2.35vw, 48px);
    --muyslcard-page-max-width: 2048px;
    --muyslcard-page-max-height: 1291px;
    --muyslcard-page-radius: 0;

    --muyslcard-contact-max-width: 2048px;
    --muyslcard-navbar-height: 120px;
    --muyslcard-logo-height: 46px;
    --muyslcard-bottom-safe-area: env(safe-area-inset-bottom, 0px);

    --muyslcard-font-min: 0.625rem;
    --muyslcard-font-small: 0.75rem;
    --muyslcard-font-base: 0.875rem;
    --muyslcard-font-text: 1rem;

    --muyslcard-button-font: 1rem;
    --muyslcard-button-font-mobile: 0.8125rem;
    --muyslcard-button-font-society: 0.875rem;
    --muyslcard-button-font-apply: 1rem;
    --muyslcard-button-font-learn-more: 0.875rem;
    --muyslcard-button-font-weight: 400;
    --muyslcard-button-height: 44px;
    --muyslcard-button-padding-x: 24px;
    --muyslcard-button-radius: 999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: 0;
}

html {
    width: 100%;
    height: 100%;
    min-height: 100%;
    background-color: var(--muyslcard-black);
    overflow: hidden;
    scroll-behavior: smooth;
    letter-spacing: 0;
}

body {
    width: 100%;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    background-color: var(--muyslcard-black);
    font-family: 'Google Sans Flex', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--muyslcard-black);
    overflow: hidden;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0;
}

body.muyslcard-popup-open {
    overflow: hidden;
}

a,
button,
input,
textarea,
span,
p,
h1,
h2,
h3,
h4,
h5,
h6,
li {
    font-family: 'Google Sans Flex', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: 0;
}

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

button,
input,
textarea {
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
}

button {
    cursor: pointer;
}

.muyslcard-page {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    max-height: none;
    margin: 0 auto;
    background:
        radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.94) 31%, rgba(245, 245, 245, 0.96) 61%, rgba(255, 255, 255, 1) 100%),
        linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(250, 250, 250) 34%, rgb(245, 245, 245) 64%, rgb(255, 255, 255) 100%);
    border-radius: var(--muyslcard-page-radius);
    overflow: hidden;
    isolation: isolate;
}

.muyslcard-page::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    background-image: url('/muyslcard/assets/mcbackground1.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0;
    pointer-events: none;
    user-select: none;
    transform: scale(1.012);
    animation: muyslcardBackgroundFadeIn 1.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    will-change: opacity, transform, filter;
}

.muyslcard-page::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    background:
        radial-gradient(circle at 47% 58%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0) 34%),
        radial-gradient(circle at 61% 64%, rgba(232, 232, 232, 0.36) 0%, rgba(232, 232, 232, 0) 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(245, 245, 245, 0.32) 100%);
    pointer-events: none;
}

.muyslcard-background {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.muyslcard-navbar {
    position: relative;
    z-index: 20;
    width: 100%;
    max-width: var(--muyslcard-page-max-width);
    height: var(--muyslcard-navbar-height);
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--muyslcard-safe-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.muyslcard-left {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    flex-shrink: 1;
    min-width: 0;
}

.muyslcard-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 1;
    min-width: 0;
}

.muyslcard-logo img {
    display: block;
    width: auto;
    height: var(--muyslcard-logo-height);
    max-width: 100%;
    object-fit: contain;
}

.muyslcard-back-link,
.muyslcard-back-link:hover,
.muyslcard-back-link:focus,
.muyslcard-back-link:active {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--muyslcard-black);
    font-size: var(--muyslcard-font-min);
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    opacity: 0.8;
    text-decoration: none;
}

.muyslcard-arrow-icon {
    display: block;
    width: 4.8px;
    height: 4.8px;
    border-top: 1.2px solid currentColor;
    border-right: 1.2px solid currentColor;
    transform: rotate(45deg) translateY(0.1px);
    flex-shrink: 0;
}

.muyslcard-nav-links {
    position: absolute;
    left: 50%;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 27px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.muyslcard-nav-links a {
    color: var(--muyslcard-black);
    font-size: var(--muyslcard-font-base);
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: 0;
}

.muyslcard-apply-button,
.muyslcard-info-button,
.muyslcard-contact-button,
.muyslcard-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: var(--muyslcard-button-height);
    min-height: var(--muyslcard-button-height);
    padding: 0 var(--muyslcard-button-padding-x);
    gap: 5px;
    background-color: var(--muyslcard-black);
    color: var(--muyslcard-white);
    border: 1px solid var(--muyslcard-black);
    border-radius: var(--muyslcard-button-radius);
    white-space: nowrap;
    cursor: pointer;
    font-size: var(--muyslcard-button-font);
    font-weight: var(--muyslcard-button-font-weight);
    line-height: 1;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0;
    flex-shrink: 0;
    transition: background-color 0.28s ease, color 0.28s ease, border-color 0.28s ease, opacity 0.28s ease;
}

.muyslcard-apply-button {
    font-size: var(--muyslcard-button-font-society);
}

.muyslcard-info-button {
    font-size: var(--muyslcard-button-font-apply);
}

.muyslcard-contact-button {
    font-size: var(--muyslcard-button-font-learn-more);
}

.muyslcard-apply-button:hover,
.muyslcard-info-button:hover,
.muyslcard-contact-button:hover,
.muyslcard-form-submit:hover {
    background-color: var(--muyslcard-white);
    color: var(--muyslcard-black);
    border-color: var(--muyslcard-black);
}

.muyslcard-form-submit:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.muyslcard-form-submit:disabled:hover {
    background-color: var(--muyslcard-black);
    color: var(--muyslcard-white);
    border-color: var(--muyslcard-black);
}

.muyslcard-hero {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--muyslcard-page-max-width);
    height: calc(100% - var(--muyslcard-navbar-height));
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--muyslcard-safe-x) calc(39px + var(--muyslcard-bottom-safe-area));
    overflow: hidden;
}

.muyslcard-hero::before,
.muyslcard-hero::after {
    content: none !important;
    display: none !important;
    background-image: none !important;
}

.muyslcard-hero-content {
    position: absolute;
    top: clamp(24px, 3.4vh, 42px);
    left: 50%;
    z-index: 10;
    width: 100%;
    max-width: 560px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    transform: translateX(-50%);
}

.muyslcard-title,
.muyslcard-description {
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(16px);
    animation: muyslcardFadeUp 0.9s ease forwards;
}

.muyslcard-title {
    margin: 0;
    color: var(--muyslcard-black);
    font-size: clamp(2.625rem, 3.75vw, 3.375rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: 0;
}

.muyslcard-title span,
.muyslcard-title strong,
.muyslcard-title em {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: 0;
}

.muyslcard-description {
    margin-top: 18px;
    color: var(--muyslcard-dark-gray);
    font-size: var(--muyslcard-font-text);
    font-weight: 400;
    line-height: 1.26;
    letter-spacing: 0;
    animation-delay: 0.12s;
}

.muyslcard-hero-action {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.muyslcard-info-button {
    margin-top: 28px;
    opacity: 0;
    animation: muyslcardFadeIn 0.8s ease forwards;
    animation-delay: 0.42s;
}

.muyslcard-price {
    width: 100%;
    max-width: 360px;
    margin: 10px auto 0;
    color: var(--muyslcard-black);
    font-size: var(--muyslcard-font-small);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0;
    text-align: center;
    opacity: 0;
    animation: muyslcardFadeIn 0.8s ease forwards;
    animation-delay: 0.52s;
}

.muyslcard-contact-panel {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: clamp(86px, 14vh, 124px);
    z-index: 12;
    width: min(calc(100% - (var(--muyslcard-safe-x) * 2)), var(--muyslcard-contact-max-width));
    min-height: 92px;
    padding: 0 var(--muyslcard-safe-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 24px;
    background-color: rgba(250, 250, 250, 0.74);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 12px 38px rgba(0, 0, 0, 0.08);
    transform: translateX(-50%);
}

.muyslcard-contact-panel p {
    color: var(--muyslcard-dark-gray);
    font-size: var(--muyslcard-font-text);
    font-weight: 400;
    line-height: 1.26;
    letter-spacing: 0;
}

.muyslcard-contact-button {
    gap: 0;
}

.muyslcard-legal-link,
.muyslcard-legal-link:hover,
.muyslcard-legal-link:focus,
.muyslcard-legal-link:active {
    position: absolute;
    right: var(--muyslcard-safe-x);
    bottom: calc(28px + var(--muyslcard-bottom-safe-area));
    z-index: 14;
    color: var(--muyslcard-black);
    font-size: var(--muyslcard-font-min);
    font-weight: 500;
    line-height: 1;
    text-transform: none;
    white-space: nowrap;
    opacity: 0.72;
    text-decoration: none;
    letter-spacing: 0;
}

.muyslcard-hidden-content {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.muyslcard-popup {
    position: fixed;
    inset: 0;
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(24px, env(safe-area-inset-top, 0px)) 24px max(24px, env(safe-area-inset-bottom, 0px));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.muyslcard-popup.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.muyslcard-popup.submitted .muyslcard-popup-form-view {
    display: none;
}

.muyslcard-popup.submitted .muyslcard-popup-success {
    display: flex;
}

.muyslcard-popup-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.muyslcard-popup-card {
    position: relative;
    z-index: 2;
    width: min(92vw, 520px);
    max-height: min(calc(100vh - 48px), 760px);
    max-height: min(calc(100svh - 48px), 760px);
    max-height: min(calc(100dvh - 48px), 760px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 38px 34px 34px;
    color: var(--muyslcard-white);
    background-color: var(--muyslcard-black);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.muyslcard-popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 4;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
}

.muyslcard-popup-close span {
    position: absolute;
    width: 14px;
    height: 1px;
    background-color: var(--muyslcard-white);
}

.muyslcard-popup-close span:first-child {
    transform: rotate(45deg);
}

.muyslcard-popup-close span:last-child {
    transform: rotate(-45deg);
}

.muyslcard-popup-title {
    margin: 0 0 26px 0;
    padding-right: 46px;
    color: var(--muyslcard-white);
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0;
}

.muyslcard-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.muyslcard-form-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.muyslcard-form-field span {
    color: rgba(255, 255, 255, 0.72);
    font-size: var(--muyslcard-font-min);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
}

.muyslcard-form-field input,
.muyslcard-form-field textarea {
    width: 100%;
    color: var(--muyslcard-white);
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    outline: none;
    font-size: var(--muyslcard-font-base);
    font-weight: 400;
    line-height: 1.3;
    resize: none;
    letter-spacing: 0;
}

.muyslcard-form-field input {
    height: 44px;
    padding: 0 14px;
}

.muyslcard-form-field textarea {
    padding: 13px 14px;
}

.muyslcard-form-field input:focus,
.muyslcard-form-field textarea:focus {
    border-color: rgba(255, 255, 255, 0.42);
}

.muyslcard-form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: var(--muyslcard-font-min);
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0;
}

.muyslcard-form-check input {
    width: 15px;
    height: 15px;
    margin-top: 1px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 4px;
    background-color: transparent;
    cursor: pointer;
}

.muyslcard-form-check input:checked {
    background-color: var(--muyslcard-white);
    box-shadow: inset 0 0 0 3px var(--muyslcard-black);
}

.muyslcard-form-check a {
    color: var(--muyslcard-white);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.muyslcard-form-submit {
    width: 100%;
    height: 46px;
    min-height: 46px;
    margin-top: 10px;
}

.muyslcard-popup-success {
    display: none;
    min-height: 240px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--muyslcard-white);
    opacity: 0;
    animation: muyslcardSuccessFade 0.42s ease forwards;
}

.muyslcard-popup-success h2 {
    margin: 0 0 14px 0;
    color: var(--muyslcard-white);
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0;
}

.muyslcard-popup-success p {
    max-width: 320px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: var(--muyslcard-font-base);
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 0;
}

@keyframes muyslcardFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes muyslcardFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes muyslcardSuccessFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes muyslcardBackgroundFadeIn {
    from {
        opacity: 0;
        filter: blur(10px);
        transform: scale(1.02);
    }

    to {
        opacity: 1;
        filter: blur(0);
        transform: scale(1);
    }
}

@media (min-width: 2049px) {
    .muyslcard-page {
        box-shadow: none;
    }
}

@media (max-width: 1024px) {
    :root {
        --muyslcard-safe-x: 28px;
        --muyslcard-navbar-height: 104px;
        --muyslcard-logo-height: 38px;
        --muyslcard-page-radius: 0;
        --muyslcard-button-height: 44px;
        --muyslcard-button-padding-x: 22px;
    }

    .muyslcard-navbar {
        gap: 18px;
    }

    .muyslcard-left {
        gap: 7px;
    }

    .muyslcard-back-link,
    .muyslcard-back-link:hover,
    .muyslcard-back-link:focus,
    .muyslcard-back-link:active {
        gap: 3px;
        font-size: var(--muyslcard-font-min);
        font-weight: 500;
        opacity: 0.8;
    }

    .muyslcard-arrow-icon {
        width: 4.4px;
        height: 4.4px;
        border-top-width: 1.1px;
        border-right-width: 1.1px;
    }

    .muyslcard-hero {
        padding-bottom: calc(28px + var(--muyslcard-bottom-safe-area));
    }

    .muyslcard-hero-content {
        top: clamp(22px, 3vh, 34px);
        max-width: 500px;
    }

    .muyslcard-title {
        font-size: clamp(2.25rem, 4.6vw, 2.875rem);
    }

    .muyslcard-description,
    .muyslcard-contact-panel p {
        margin-top: 17px;
        font-size: 0.9375rem;
        line-height: 1.26;
    }

    .muyslcard-contact-panel p {
        margin-top: 0;
    }

    .muyslcard-info-button {
        margin-top: 26px;
    }

    .muyslcard-price {
        margin-top: 9px;
        font-size: var(--muyslcard-font-small);
    }

    .muyslcard-contact-panel {
        bottom: clamp(52px, 8vh, 78px);
        min-height: 82px;
    }

    .muyslcard-legal-link,
    .muyslcard-legal-link:hover,
    .muyslcard-legal-link:focus,
    .muyslcard-legal-link:active {
        right: var(--muyslcard-safe-x);
        bottom: calc(24px + var(--muyslcard-bottom-safe-area));
        font-size: var(--muyslcard-font-min);
        font-weight: 500;
        opacity: 0.72;
    }
}

@media (max-width: 640px) {
    :root {
        --muyslcard-safe-x: 18px;
        --muyslcard-navbar-height: 82px;
        --muyslcard-logo-height: 30px;
        --muyslcard-page-radius: 0;
        --muyslcard-button-font: var(--muyslcard-button-font-mobile);
        --muyslcard-button-height: 42px;
        --muyslcard-button-padding-x: 20px;
    }

    .muyslcard-info-button,
    .muyslcard-contact-button {
        font-size: var(--muyslcard-button-font-mobile);
    }

    .muyslcard-page::before {
        background-position: center center;
        background-size: cover;
    }

    .muyslcard-navbar {
        gap: 10px;
    }

    .muyslcard-left {
        gap: 6px;
        max-width: calc(100% - 132px);
    }

    .muyslcard-logo {
        min-width: 0;
    }

    .muyslcard-back-link,
    .muyslcard-back-link:hover,
    .muyslcard-back-link:focus,
    .muyslcard-back-link:active {
        gap: 2.5px;
        font-size: var(--muyslcard-font-min);
        font-weight: 500;
        opacity: 0.8;
    }

    .muyslcard-arrow-icon {
        width: 4px;
        height: 4px;
        border-top-width: 1px;
        border-right-width: 1px;
    }

    .muyslcard-hero {
        padding-bottom: calc(18px + var(--muyslcard-bottom-safe-area));
    }

    .muyslcard-hero-content {
        top: clamp(14px, 2.8vh, 24px);
        max-width: 440px;
    }

    .muyslcard-title {
        font-size: clamp(1.875rem, 8.4vw, 2.375rem);
    }

    .muyslcard-description,
    .muyslcard-contact-panel p {
        margin-top: 16px;
        font-size: 0.8125rem;
        line-height: 1.28;
    }

    .muyslcard-contact-panel p {
        margin-top: 0;
        text-align: center;
    }

    .muyslcard-info-button {
        margin-top: 24px;
    }

    .muyslcard-price {
        max-width: 280px;
        margin-top: 8px;
        font-size: var(--muyslcard-font-small);
        line-height: 1.25;
    }

    .muyslcard-contact-panel {
        bottom: clamp(34px, 6vh, 48px);
        min-height: 74px;
        padding: 12px;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        border-radius: 18px;
    }

    .muyslcard-legal-link,
    .muyslcard-legal-link:hover,
    .muyslcard-legal-link:focus,
    .muyslcard-legal-link:active {
        right: var(--muyslcard-safe-x);
        bottom: calc(14px + var(--muyslcard-bottom-safe-area));
        font-size: var(--muyslcard-font-min);
        font-weight: 500;
        opacity: 0.72;
    }

    .muyslcard-popup {
        padding: max(18px, env(safe-area-inset-top, 0px)) 18px max(18px, env(safe-area-inset-bottom, 0px));
    }

    .muyslcard-popup-card {
        width: 100%;
        max-height: calc(100vh - 36px);
        max-height: calc(100svh - 36px);
        max-height: calc(100dvh - 36px);
        padding: 46px 20px 22px;
        border-radius: 20px;
    }

    .muyslcard-popup-close {
        top: 14px;
        right: 14px;
        width: 30px;
        height: 30px;
    }

    .muyslcard-popup-title {
        margin-bottom: 22px;
        padding-right: 48px;
        font-size: 1.125rem;
        line-height: 1.15;
    }

    .muyslcard-popup-success {
        min-height: 220px;
    }

    .muyslcard-popup-success p {
        font-size: 0.8125rem;
    }
}

@media (max-width: 425px) {
    .muyslcard-apply-button,
    .muyslcard-info-button,
    .muyslcard-contact-button {
        font-size: 0.8125rem !important;
    }
}

@media (max-width: 360px) {
    :root {
        --muyslcard-safe-x: 14px;
        --muyslcard-navbar-height: 76px;
        --muyslcard-logo-height: 26px;
        --muyslcard-page-radius: 0;
        --muyslcard-button-font: var(--muyslcard-button-font-mobile);
        --muyslcard-button-height: 40px;
        --muyslcard-button-padding-x: 18px;
    }

    .muyslcard-left {
        max-width: calc(100% - 124px);
    }

    .muyslcard-hero {
        padding-bottom: calc(14px + var(--muyslcard-bottom-safe-area));
    }

    .muyslcard-hero-content {
        top: 14px;
        padding: 0 16px;
    }

    .muyslcard-title {
        font-size: clamp(1.75rem, 8.8vw, 2.125rem);
    }

    .muyslcard-description,
    .muyslcard-contact-panel p {
        margin-top: 14px;
        font-size: var(--muyslcard-font-small);
    }

    .muyslcard-contact-panel p {
        margin-top: 0;
    }

    .muyslcard-info-button {
        margin-top: 20px;
    }

    .muyslcard-price {
        max-width: 250px;
        font-size: var(--muyslcard-font-small);
    }

    .muyslcard-contact-panel {
        bottom: 34px;
    }

    .muyslcard-legal-link,
    .muyslcard-legal-link:hover,
    .muyslcard-legal-link:focus,
    .muyslcard-legal-link:active {
        right: var(--muyslcard-safe-x);
        bottom: calc(12px + var(--muyslcard-bottom-safe-area));
    }

    .muyslcard-popup-card {
        padding: 48px 18px 22px;
    }
}

@media (max-width: 320px) {
    :root {
        --muyslcard-safe-x: 12px;
        --muyslcard-navbar-height: 70px;
        --muyslcard-logo-height: 23px;
        --muyslcard-page-radius: 0;
        --muyslcard-button-font: var(--muyslcard-button-font-mobile);
        --muyslcard-button-height: 38px;
        --muyslcard-button-padding-x: 16px;
    }

    .muyslcard-left {
        gap: 5px;
        max-width: calc(100% - 116px);
    }

    .muyslcard-back-link,
    .muyslcard-back-link:hover,
    .muyslcard-back-link:focus,
    .muyslcard-back-link:active {
        gap: 2px;
        font-size: var(--muyslcard-font-min);
    }

    .muyslcard-arrow-icon {
        width: 3.4px;
        height: 3.4px;
        border-top-width: 0.9px;
        border-right-width: 0.9px;
    }

    .muyslcard-hero-content {
        top: 12px;
        padding: 0 14px;
    }

    .muyslcard-title {
        font-size: clamp(1.5rem, 8.6vw, 1.875rem);
        line-height: 0.98;
    }

    .muyslcard-description,
    .muyslcard-contact-panel p {
        margin-top: 12px;
        font-size: var(--muyslcard-font-small);
        line-height: 1.24;
    }

    .muyslcard-contact-panel p {
        margin-top: 0;
    }

    .muyslcard-info-button {
        margin-top: 18px;
    }

    .muyslcard-price {
        max-width: 230px;
        margin-top: 7px;
        font-size: var(--muyslcard-font-small);
    }

    .muyslcard-contact-panel {
        bottom: 32px;
        width: calc(100% - 24px);
        min-height: 68px;
        padding: 10px;
        gap: 8px;
        border-radius: 16px;
    }

    .muyslcard-legal-link,
    .muyslcard-legal-link:hover,
    .muyslcard-legal-link:focus,
    .muyslcard-legal-link:active {
        right: var(--muyslcard-safe-x);
        bottom: calc(10px + var(--muyslcard-bottom-safe-area));
        font-size: var(--muyslcard-font-min);
        transform: none;
    }

    .muyslcard-popup {
        padding: max(12px, env(safe-area-inset-top, 0px)) 12px max(12px, env(safe-area-inset-bottom, 0px));
    }

    .muyslcard-popup-card {
        max-height: calc(100vh - 24px);
        max-height: calc(100svh - 24px);
        max-height: calc(100dvh - 24px);
        padding: 44px 16px 20px;
        border-radius: 18px;
    }

    .muyslcard-popup-title {
        font-size: 1rem;
    }

    .muyslcard-form-field input {
        height: 42px;
    }

    .muyslcard-form-submit {
        min-height: 44px;
    }
}

@media (max-width: 319px) and (min-width: 281px) {
    :root {
        --muyslcard-safe-x: 10px;
        --muyslcard-navbar-height: 64px;
        --muyslcard-logo-height: 21px;
        --muyslcard-page-radius: 0;
        --muyslcard-button-font: var(--muyslcard-button-font-mobile);
        --muyslcard-button-height: 36px;
        --muyslcard-button-padding-x: 14px;
    }

    .muyslcard-navbar {
        padding: 0 var(--muyslcard-safe-x);
        gap: 8px;
    }

    .muyslcard-left {
        gap: 4px;
        max-width: calc(100% - 108px);
    }

    .muyslcard-back-link,
    .muyslcard-back-link:hover,
    .muyslcard-back-link:focus,
    .muyslcard-back-link:active {
        display: inline-flex;
        gap: 2px;
        font-size: var(--muyslcard-font-min);
        line-height: 1;
        white-space: nowrap;
        opacity: 0.8;
    }

    .muyslcard-arrow-icon {
        width: 3px;
        height: 3px;
        border-top-width: 0.8px;
        border-right-width: 0.8px;
    }

    .muyslcard-hero-content {
        top: 10px;
        padding: 0 12px;
    }

    .muyslcard-title {
        font-size: clamp(1.25rem, 8vw, 1.5rem);
    }

    .muyslcard-description,
    .muyslcard-contact-panel p {
        margin-top: 10px;
        font-size: var(--muyslcard-font-small);
    }

    .muyslcard-contact-panel p {
        margin-top: 0;
    }

    .muyslcard-info-button {
        margin-top: 14px;
    }

    .muyslcard-price {
        max-width: 210px;
        font-size: var(--muyslcard-font-small);
    }

    .muyslcard-contact-panel {
        bottom: 28px;
        width: calc(100% - 20px);
        min-height: auto;
        padding: 9px;
        gap: 7px;
    }

    .muyslcard-legal-link,
    .muyslcard-legal-link:hover,
    .muyslcard-legal-link:focus,
    .muyslcard-legal-link:active {
        right: var(--muyslcard-safe-x);
        font-size: var(--muyslcard-font-min);
        transform: none;
    }
}

@media (max-height: 640px) and (min-width: 641px) {
    .muyslcard-hero-content {
        top: 8px;
    }

    .muyslcard-title {
        font-size: clamp(2rem, 3.4vw, 2.75rem);
    }

    .muyslcard-description,
    .muyslcard-contact-panel p {
        margin-top: 12px;
        font-size: var(--muyslcard-font-base);
    }

    .muyslcard-contact-panel p {
        margin-top: 0;
    }

    .muyslcard-info-button {
        margin-top: 18px;
    }

    .muyslcard-contact-panel {
        bottom: 48px;
        min-height: 76px;
    }
}

@media (max-height: 560px) {
    .muyslcard-contact-panel {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    .muyslcard-hero-content {
        top: clamp(8px, 2vh, 18px);
    }

    .muyslcard-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    .muyslcard-description {
        margin-top: 10px;
    }

    .muyslcard-info-button {
        margin-top: 16px;
    }
}

@media (max-width: 640px) and (max-height: 620px) {
    .muyslcard-contact-panel {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    .muyslcard-hero-content {
        top: clamp(8px, 2vh, 14px);
    }

    .muyslcard-title {
        font-size: clamp(1.375rem, 8vw, 1.875rem);
    }

    .muyslcard-description {
        margin-top: 8px;
        font-size: var(--muyslcard-font-small);
    }

    .muyslcard-info-button {
        margin-top: 12px;
    }
}

@media (max-width: 280px), (max-height: 240px) {
    html,
    body {
        width: 100%;
        height: 100%;
        min-height: 100%;
        padding: 0;
        background-color: var(--muyslcard-black);
        overflow: hidden;
    }

    .muyslcard-page,
    .muyslcard-background,
    .muyslcard-navbar,
    .muyslcard-hero,
    .muyslcard-hidden-content,
    .muyslcard-popup {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    body::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 2147483647;
        display: block;
        background-color: var(--muyslcard-black);
        background-image: url('/assets/muyslw.svg'), url('/muyslcard/assets/muyslw.svg');
        background-repeat: no-repeat, no-repeat;
        background-position: center center, center center;
        background-size: clamp(44px, 46vw, 108px) auto, clamp(44px, 46vw, 108px) auto;
        pointer-events: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    .muyslcard-page::before {
        opacity: 1 !important;
        animation: none !important;
        filter: none !important;
        transform: scale(1) !important;
    }
}