/* ============================================================
   Premium Floating Contact CTA
   ============================================================ */

.pc-floating-cta {
    --pc-red: #EA1D25;
    --pc-red-mid: #d41922;
    --pc-red-dark: #9e1219;
    --pc-red-glow: rgba(234, 29, 37, 0.55);
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 9990;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline: none;
    transform: translateY(-50%);
    animation: pcCtaFloat 5s ease-in-out infinite;
}

    .pc-floating-cta:hover,
    .pc-floating-cta:focus {
        animation: none;
        transform: translateY(-50%);
    }

.pc-floating-cta__glow {
    position: absolute;
    inset: -10px -6px -10px -14px;
    border-radius: 16px 0 0 16px;
    background: radial-gradient(ellipse at 30% 50%, var(--pc-red-glow) 0%, rgba(234, 29, 37, 0.15) 45%, transparent 72%);
    opacity: 0.85;
    animation: pcCtaGlowPulse 3s ease-in-out infinite;
    pointer-events: none;
    filter: blur(2px);
}

.pc-floating-cta__ring {
    position: absolute;
    inset: -5px -3px -5px -10px;
    border-radius: 14px 0 0 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 0 0 1px rgba(234, 29, 37, 0.35), inset 0 0 12px rgba(234, 29, 37, 0.15);
    animation: pcCtaRingPulse 3s ease-in-out infinite;
    pointer-events: none;
}

.pc-floating-cta__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 22px 14px;
    border-radius: 14px 0 0 14px;
    overflow: hidden;
    background: linear-gradient(145deg, #ff4d54 0%, var(--pc-red) 38%, var(--pc-red-mid) 68%, var(--pc-red-dark) 100%);
    background-size: 220% 220%;
    animation: pcCtaGradientShift 8s ease infinite;
    box-shadow:
        -8px 6px 32px rgba(234, 29, 37, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        inset 0 -1px 0 rgba(0, 0, 0, 0.12);
    transition:
        transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.4s ease;
}

    .pc-floating-cta__inner::before {
        content: '';
        position: absolute;
        top: 0;
        left: -120%;
        width: 80%;
        height: 100%;
        background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.22) 48%, transparent 100%);
        transform: skewX(-18deg);
        transition: left 0.65s cubic-bezier(0.22, 1, 0.36, 1);
        pointer-events: none;
    }

    .pc-floating-cta__inner::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, transparent 42%, rgba(0, 0, 0, 0.06) 100%);
        pointer-events: none;
    }

.pc-floating-cta__icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 17px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 4px 14px rgba(0, 0, 0, 0.15);
    animation: pcCtaIconBob 3.2s ease-in-out infinite;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.35s ease, box-shadow 0.35s ease;
}

    .pc-floating-cta__icon::after {
        content: '';
        position: absolute;
        inset: -4px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.2);
        opacity: 0;
        transform: scale(0.85);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

.pc-floating-cta__label {
    position: relative;
    z-index: 1;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: letter-spacing 0.35s ease;
}

.pc-floating-cta:hover .pc-floating-cta__inner,
.pc-floating-cta:focus .pc-floating-cta__inner {
    transform: translateX(-8px) scale(1.04);
    box-shadow:
        -14px 8px 40px rgba(234, 29, 37, 0.52),
        inset 0 1px 0 rgba(255, 255, 255, 0.32),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

    .pc-floating-cta:hover .pc-floating-cta__inner::before,
    .pc-floating-cta:focus .pc-floating-cta__inner::before {
        left: 140%;
    }

.pc-floating-cta:hover .pc-floating-cta__icon,
.pc-floating-cta:focus .pc-floating-cta__icon {
    transform: scale(1.14) rotate(-10deg);
    background: rgba(255, 255, 255, 0.26);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 18px rgba(0, 0, 0, 0.2);
    animation: none;
}

    .pc-floating-cta:hover .pc-floating-cta__icon::after,
    .pc-floating-cta:focus .pc-floating-cta__icon::after {
        opacity: 1;
        transform: scale(1.15);
    }

.pc-floating-cta:hover .pc-floating-cta__label,
.pc-floating-cta:focus .pc-floating-cta__label {
    letter-spacing: 2.5px;
}

.pc-floating-cta:hover .pc-floating-cta__glow,
.pc-floating-cta:focus .pc-floating-cta__glow {
    opacity: 1;
    animation: pcCtaGlowPulse 1.6s ease-in-out infinite;
}

.pc-floating-cta:active .pc-floating-cta__inner {
    transform: translateX(-4px) scale(1.01);
    transition-duration: 0.12s;
}

@keyframes pcCtaFloat {
    0%, 100% { transform: translateY(calc(-50% - 0px)); }
    50% { transform: translateY(calc(-50% - 6px)); }
}

@keyframes pcCtaGlowPulse {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

@keyframes pcCtaRingPulse {
    0%, 100% { opacity: 0.55; }
    50% { opacity: 1; }
}

@keyframes pcCtaGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pcCtaIconBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* ============================================================
   Premium Modal Overlay
   ============================================================ */

.pc-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(10, 12, 18, 0);
    backdrop-filter: blur(0px);
    visibility: hidden;
    pointer-events: none;
    transition: background 0.45s ease, backdrop-filter 0.45s ease, visibility 0.45s;
}

.pc-modal-overlay.active {
    visibility: visible;
    pointer-events: auto;
    background: rgba(10, 12, 18, 0.72);
    backdrop-filter: blur(6px);
}

.pc-modal-overlay.is-closing {
    background: rgba(10, 12, 18, 0);
    backdrop-filter: blur(0px);
}

.pc-modal {
    display: flex;
    width: 100%;
    max-width: 980px;
    max-height: 92vh;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.06);
    opacity: 0;
    transform: translateY(40px) scale(0.94);
    transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.pc-modal-overlay.active .pc-modal {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.pc-modal-overlay.is-closing .pc-modal {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
    transition-duration: 0.32s;
}

/* Brand sidebar */
.pc-modal__brand {
    position: relative;
    flex: 0 0 340px;
    background: linear-gradient(160deg, #1a1d24 0%, #0f1115 55%, #1a0a0c 100%);
    color: #fff;
    padding: 40px 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pc-modal__brand-content {
    position: relative;
    z-index: 2;
}

.pc-modal__brand-badge {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #EA1D25, #ff6b6b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(234, 29, 37, 0.4);
    animation: pcModalBadgeIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.pc-modal__brand-tag {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #EA1D25;
    margin: 0 0 8px;
    animation: pcModalFadeUp 0.55s ease 0.2s both;
}

.pc-modal__brand-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 14px;
    animation: pcModalFadeUp 0.55s ease 0.28s both;
    color:#fff !important;
}

.pc-modal__brand-text {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 24px;
    animation: pcModalFadeUp 0.55s ease 0.36s both;
}

.pc-modal__brand-features {
    list-style: none;
    padding: 0;
    margin: 0;
    animation: pcModalFadeUp 0.55s ease 0.44s both;
}

    .pc-modal__brand-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.85);
        margin-bottom: 10px;
    }

    .pc-modal__brand-features i {
        color: #EA1D25;
        font-size: 15px;
    }

.pc-modal__brand-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.pc-modal__shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(234, 29, 37, 0.12);
}

.pc-modal__shape--1 {
    width: 220px;
    height: 220px;
    top: -60px;
    right: -60px;
    animation: pcModalFloat 8s ease-in-out infinite;
}

.pc-modal__shape--2 {
    width: 120px;
    height: 120px;
    bottom: 40px;
    left: -30px;
    animation: pcModalFloat 6s ease-in-out infinite reverse;
}

.pc-modal__shape--3 {
    width: 80px;
    height: 80px;
    bottom: 120px;
    right: 30px;
    background: rgba(255, 255, 255, 0.04);
    animation: pcModalFloat 5s ease-in-out infinite 1s;
}

/* Form panel */
.pc-modal__panel {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    max-height: 92vh;
    background: #fafbfc;
}

.pc-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #6c757d;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .pc-modal__close:hover,
    .pc-modal__close:focus {
        background: #EA1D25;
        color: #fff;
        transform: rotate(90deg);
        outline: none;
    }

.pc-modal__panel-header {
    padding: 36px 36px 0;
    flex-shrink: 0;
}

.pc-modal__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #EA1D25;
    margin-bottom: 8px;
}

.pc-modal__panel-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1d24;
    margin: 0 0 8px;
}

.pc-modal__panel-subtitle {
    font-size: 15px;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.pc-modal__form {
    flex: 1;
    overflow-y: auto;
    padding: 24px 36px 32px;
}

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

/* ============================================================
   Premium Popup Form Fields
   ============================================================ */

.connect-with-us-form--popup {
    --pc-field-height: 48px;
    --pc-label-height: 20px;
    --pc-grid-gap: 16px;
    --pc-icon-width: 44px;
}

.connect-with-us-form--popup .pc-popup-alert-slot {
    margin-bottom: var(--pc-grid-gap);
}

.connect-with-us-form--popup .pc-popup-alert-slot .custom-alert {
    border-radius: 12px;
    border: none;
    font-size: 14px;
}

/* Override contactus.css .input-wrapper horizontal layout inside popup */
.connect-with-us-form--popup .pc-popup-field.input-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    margin: 0;
    border: none !important;
    border-radius: 0 !important;
    background: transparent;
    min-width: 0;
}

.connect-with-us-form--popup .pc-popup-field.input-wrapper.input-error {
    border: none !important;
    box-shadow: none !important;
}

.pc-popup-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: var(--pc-grid-gap);
    row-gap: var(--pc-grid-gap);
    align-items: start;
}

.pc-popup-field--full {
    grid-column: 1 / -1;
}

.pc-popup-field--captcha-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: var(--pc-grid-gap);
    align-items: end;
}

.pc-popup-field--captcha-input,
.pc-popup-field--captcha-image {
    min-width: 0;
}

.pc-popup-field--animate {
    opacity: 0;
    transform: translateY(16px);
}

.pc-modal-overlay.active .pc-popup-field--animate {
    animation: pcFieldEnter 0.5s cubic-bezier(0.22, 1, 0.36, 1) var(--field-delay, 0s) forwards;
}

.pc-popup-label {
    display: block;
    height: var(--pc-label-height);
    line-height: var(--pc-label-height);
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin: 0 0 8px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pc-popup-label--spacer {
    visibility: hidden;
    user-select: none;
}

.pc-popup-input-wrap {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: var(--pc-field-height);
    height: var(--pc-field-height);
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    box-sizing: border-box;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

    .pc-popup-input-wrap:focus-within {
        border-color: #EA1D25;
        box-shadow: 0 0 0 3px rgba(234, 29, 37, 0.1);
    }

.pc-popup-field.input-error .pc-popup-input-wrap {
    border-color: #EA1D25 !important;
    box-shadow: 0 0 0 3px rgba(234, 29, 37, 0.12) !important;
}

.pc-popup-input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--pc-icon-width);
    height: 100%;
    flex-shrink: 0;
    color: #9ca3af;
    font-size: 15px;
    transition: color 0.25s ease;
}

.pc-popup-input-wrap:focus-within .pc-popup-input-icon {
    color: #EA1D25;
}

.connect-with-us-form--popup .pc-popup-input.form-input {
    flex: 1;
    width: 100%;
    min-width: 0;
    height: 100%;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    padding: 0 14px 0 0 !important;
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    color: #1f2937 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

    .connect-with-us-form--popup .pc-popup-input.form-input::placeholder {
        color: #adb5bd;
    }

.pc-popup-input-wrap--textarea {
    align-items: stretch;
    height: auto;
    min-height: 120px;
}

    .pc-popup-input-wrap--textarea .pc-popup-input-icon {
        align-items: flex-start;
        padding-top: 14px;
        height: auto;
    }

.connect-with-us-form--popup .pc-popup-textarea.form-input {
    height: auto;
    min-height: 118px;
    padding: 14px 14px 14px 0 !important;
    resize: vertical;
}

/* Captcha visual — aligned with input row */
.pc-popup-captcha-visual {
    display: flex;
    align-items: center;
    gap: 8px;
    height: var(--pc-field-height);
    min-height: var(--pc-field-height);
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 4px 8px;
    box-sizing: border-box;
}

    .pc-popup-captcha-visual canvas {
        display: block;
        height: 38px;
        width: auto;
        max-width: 160px;
        border-radius: 4px;
    }

.pc-popup-captcha-refresh {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    background: #f3f4f6;
    color: #EA1D25;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

    .pc-popup-captcha-refresh:hover {
        background: #EA1D25;
        color: #fff;
    }

.pc-popup-captcha-wrap {
    min-width: 0;
}

/* Submit — Premium CTA */
.pc-popup-submit-row {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.pc-popup-submit-row--inline {
    justify-content: flex-end;
    align-self: end;
}

.pc-popup-submit {
    --pc-submit-height: 52px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-height: var(--pc-submit-height);
    padding: 0 28px 0 32px;
    border: none;
    border-radius: 14px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, transparent 38%),
        linear-gradient(135deg, #ff4d54 0%, #EA1D25 42%, #c4181f 100%);
    background-size: 100% 100%, 200% 200%;
    box-shadow:
        0 10px 28px rgba(234, 29, 37, 0.38),
        0 2px 0 rgba(255, 255, 255, 0.12) inset,
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    transition:
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.4s ease,
        background-position 0.5s ease,
        opacity 0.3s ease;
}

    /* Shine sweep layer */
    .pc-popup-submit::before {
        content: '';
        position: absolute;
        top: 0;
        left: -130%;
        width: 70%;
        height: 100%;
        background: linear-gradient(105deg, transparent 10%, rgba(255, 255, 255, 0.38) 50%, transparent 90%);
        transform: skewX(-20deg);
        z-index: 1;
        pointer-events: none;
        transition: left 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }

    /* Icon / loading spinner layer (CSS-driven — survives innerText updates) */
    .pc-popup-submit::after {
        content: '\f1d8';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 14px;
        margin-left: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 18px;
        height: 18px;
        z-index: 2;
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .pc-popup-submit:hover:not(:disabled) {
        transform: translateY(-4px);
        background-position: 0 0, 100% 50%;
        box-shadow:
            0 18px 40px rgba(234, 29, 37, 0.48),
            0 2px 0 rgba(255, 255, 255, 0.16) inset,
            0 0 0 1px rgba(255, 255, 255, 0.12) inset;
    }

        .pc-popup-submit:hover:not(:disabled)::before {
            left: 150%;
        }

        .pc-popup-submit:hover:not(:disabled)::after {
            transform: translateX(5px) rotate(-8deg);
        }

    .pc-popup-submit:active:not(:disabled) {
        transform: translateY(-1px);
        transition-duration: 0.12s;
    }

    /* Processing / Sending... state */
    .pc-popup-submit:disabled {
        opacity: 1;
        cursor: wait;
        transform: none;
        letter-spacing: 0.4px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 38%),
            linear-gradient(135deg, #e8353d 0%, #c4181f 100%);
        box-shadow:
            0 6px 20px rgba(234, 29, 37, 0.28),
            0 0 0 1px rgba(255, 255, 255, 0.06) inset;
        animation: pcSubmitProcessing 1.8s ease-in-out infinite;
    }

        .pc-popup-submit:disabled::before {
            left: -130%;
            animation: none;
        }

        .pc-popup-submit:disabled::after {
            content: '';
            width: 18px;
            height: 18px;
            margin-left: 12px;
            border: 2.5px solid rgba(255, 255, 255, 0.28);
            border-top-color: #fff;
            border-radius: 50%;
            animation: pcSubmitSpin 0.7s linear infinite;
        }

/* Hide HTML icon — ::after handles icon & spinner consistently */
.pc-popup-submit__icon {
    display: none !important;
}

.pc-popup-submit__text {
    position: relative;
    z-index: 2;
}

@keyframes pcSubmitSpin {
    to { transform: rotate(360deg); }
}

@keyframes pcSubmitProcessing {
    0%, 100% { box-shadow: 0 6px 20px rgba(234, 29, 37, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.06) inset; }
    50% { box-shadow: 0 8px 26px rgba(234, 29, 37, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.1) inset; }
}

/* Animations */
@keyframes pcModalFadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pcModalBadgeIn {
    from { opacity: 0; transform: scale(0.6) rotate(-10deg); }
    to { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes pcModalFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(8px, -12px); }
}

@keyframes pcFieldEnter {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 900px) {
    .pc-modal {
        flex-direction: column;
        max-height: 95vh;
    }

    .pc-modal__brand {
        flex: 0 0 auto;
        padding: 28px 24px;
    }

    .pc-modal__brand-title {
        font-size: 24px;
    }

    .pc-modal__brand-text,
    .pc-modal__brand-features {
        display: none;
    }

    .pc-modal__panel-header {
        padding: 24px 24px 0;
    }

    .pc-modal__form {
        padding: 20px 24px 28px;
    }
}

@media (max-width: 768px) {
    .pc-floating-cta {
        animation: pcCtaFloat 5.5s ease-in-out infinite;
    }

    .pc-floating-cta__inner {
        padding: 18px 11px;
        gap: 9px;
    }

    .pc-floating-cta__icon {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .pc-floating-cta__label {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .pc-modal-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .pc-modal {
        max-height: 96vh;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
    }

    .pc-modal-overlay.active .pc-modal {
        transform: translateY(0);
    }

    .pc-modal-overlay.is-closing .pc-modal {
        transform: translateY(100%);
    }

    .pc-popup-form-grid {
        grid-template-columns: 1fr;
        row-gap: 14px;
    }

    .pc-popup-submit,
    .pc-popup-submit-row .pc-popup-submit {
        width: 100%;
    }

    .pc-popup-submit-row--inline {
        width: 100%;
        align-self: stretch;
    }
}

@media (max-width: 480px) {
    .pc-modal__brand {
        padding: 20px 20px 16px;
    }

    .pc-modal__brand-badge {
        width: 44px;
        height: 44px;
        font-size: 18px;
        margin-bottom: 12px;
    }

    .pc-modal__panel-title {
        font-size: 22px;
    }

    .pc-popup-field--captcha-row {
        grid-template-columns: 1fr;
        row-gap: 14px;
        align-items: stretch;
    }

    .pc-popup-label--spacer {
        display: none;
    }

    .pc-popup-captcha-visual {
        width: 100%;
        justify-content: center;
    }
}
