/*
 * LOOKLY Pro Checkout CSS
 * Version livrée : v3-temoignage-responsive-2026-07-21
 * Modifications :
 * - témoignage desktop légèrement remonté avec marge basse
 * - témoignage mobile inspiré de la landing
 * - flèche masquée sur mobile
 */

.lkc-body {
    margin: 0;
    background: #ffffff;
}

.lkc-body,
.lkc-body * {
    box-sizing: border-box;
}

.lkc-page {
    --lkc-purple: #8562d9;
    --lkc-purple-dark: #7551d0;
    --lkc-purple-soft: #eee8ff;
    --lkc-text: #111111;
    --lkc-muted: #7c7c84;
    --lkc-border: #bcbcc2;
    --lkc-field-bg: #ffffff;

    min-height: 100vh;
    padding: 38px 42px 52px;
    color: var(--lkc-text);
    font-family: "Poppins", Arial, sans-serif;
    background: #ffffff;
}

.lkc-page button,
.lkc-page input {
    font: inherit;
}

.lkc-page img {
    max-width: 100%;
}

.lkc-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    grid-template-areas:
        "heading summary"
        "form summary";
    column-gap: clamp(40px, 5vw, 82px);
    row-gap: 14px;
    width: min(100%, 1510px);
    margin: 0 auto;
    align-items: start;
}

.lkc-heading {
    grid-area: heading;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-width: 0;
}

.lkc-title {
    margin: 0;
    font-size: 26px;
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -0.045em;
}

.lkc-steps {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    padding-top: 5px;
}

.lkc-step {
    display: inline-flex;
    width: 23px;
    height: 23px;
    align-items: center;
    justify-content: center;
    border: 1px solid #d8d7dd;
    border-radius: 50%;
    color: #a3a1aa;
    background: #ffffff;
    font-size: 11px;
    font-weight: 600;
}

.lkc-step--done,
.lkc-step--active {
    border-color: var(--lkc-purple);
    color: #ffffff;
    background: var(--lkc-purple);
}

.lkc-step-line {
    width: 31px;
    height: 2px;
    background: #d9d7df;
}

.lkc-step-line--active {
    background: var(--lkc-purple);
}

.lkc-form-panel {
    grid-area: form;
    width: 100%;
    min-width: 0;
    padding-top: 2px;
}

.lkc-form {
    width: 100%;
}

.lkc-form-section + .lkc-form-section {
    margin-top: 28px;
}

.lkc-section-heading {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 13px;
}

.lkc-section-heading h2 {
    margin: 0;
    font-size: clamp(22px, 1.65vw, 31px);
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.035em;
}

.lkc-section-icon {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex: 0 0 auto;
}

.lkc-fields-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 15px;
}

.lkc-field {
    min-width: 0;
}

.lkc-field label,
.lkc-field-label {
    display: block;
    margin: 0 0 6px;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.lkc-field label span,
.lkc-field-label > span {
    color: #ff2a2a;
}

.lkc-field input {
    width: 100%;
    height: 53px;
    padding: 0 13px;
    border: 1px solid #8f8f94;
    border-radius: 8px;
    outline: none;
    color: var(--lkc-text);
    background: var(--lkc-field-bg);
    font-size: 17px;
    line-height: 1;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.lkc-field input::placeholder {
    color: #c8c8cd;
    opacity: 1;
}

.lkc-field input:focus {
    border-color: var(--lkc-purple);
    box-shadow: 0 0 0 3px rgba(133, 98, 217, 0.14);
}


/* =========================================================
   LISTE DES ACTIVITÉS
   ========================================================= */

.lkc-field--activity {
    position: relative;
    grid-column: 1 / -1;
}

.lkc-activity-select {
    position: relative;
    width: 100%;
}

.lkc-activity-trigger {
    display: flex;
    width: 100%;
    height: 53px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 13px;
    border: 1px solid #8f8f94;
    border-radius: 8px;
    outline: none;
    color: #c8c8cd;
    background: #ffffff;
    font-size: 17px;
    line-height: 1;
    text-align: left;
    cursor: pointer;
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease;
}

.lkc-activity-trigger:hover,
.lkc-activity-trigger:focus-visible,
.lkc-activity-select.is-open .lkc-activity-trigger {
    border-color: var(--lkc-purple);
    box-shadow: 0 0 0 3px rgba(133, 98, 217, 0.14);
}

.lkc-activity-trigger.has-value {
    color: var(--lkc-text);
}

.lkc-activity-current {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
}

.lkc-activity-current-icon {
    display: none;
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.lkc-activity-current-icon.is-visible {
    display: block;
}

.lkc-activity-chevron {
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-right: 2px solid #77777e;
    border-bottom: 2px solid #77777e;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 160ms ease;
}

.lkc-activity-select.is-open .lkc-activity-chevron {
    transform: translateY(2px) rotate(225deg);
}

.lkc-activity-menu {
    position: absolute;
    top: calc(100% + 7px);
    right: 0;
    left: 0;
    z-index: 40;
    display: none;
    max-height: 330px;
    overflow-y: auto;
    padding: 6px;
    border: 1px solid #dedbe6;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(28, 24, 36, 0.14);
}

.lkc-activity-select.is-open .lkc-activity-menu {
    display: grid;
    gap: 2px;
}

.lkc-activity-option {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    gap: 12px;
    padding: 8px 11px;
    border: 0;
    border-radius: 7px;
    color: var(--lkc-text);
    background: #ffffff;
    font-size: 16px;
    line-height: 1.2;
    text-align: left;
    cursor: pointer;
}

.lkc-activity-option:hover,
.lkc-activity-option:focus-visible,
.lkc-activity-option[aria-selected="true"] {
    outline: none;
    background: #f3effc;
}

.lkc-activity-option-icon {
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* =========================================================
   CONFIRMATION ENTREPRISE IMMATRICULÉE
   ========================================================= */

.lkc-business-confirmation {
    margin-top: 18px;
}

.lkc-business-confirmation label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    cursor: pointer;
}

.lkc-business-confirmation input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    flex: 0 0 18px;
    accent-color: var(--lkc-purple);
    cursor: pointer;
}

.lkc-business-confirmation span {
    color: var(--lkc-text);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}

.lkc-form-section--payment {
    padding-top: 3px;
}

.lkc-payment-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
}

.lkc-payment-heading .lkc-section-heading {
    margin-bottom: 0;
    align-items: flex-start;
}

.lkc-payment-title-content {
    flex: 1;
    min-width: 0;
}

.lkc-payment-trial-note {
    margin: 4px 0 0;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.lkc-payment-trial-note strong {
    font-weight: 600;
}


.lkc-stripe-placeholder {
    width: 100%;
    max-width: 500px;
    padding: 0 8px 0;
}

.lkc-card-label {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 13px;
    color: #262626;
    font-size: 15px;
    font-weight: 600;
}

.lkc-card-icon {
    position: relative;
    display: inline-block;
    width: 19px;
    height: 13px;
    border-radius: 2px;
    background: #151515;
}

.lkc-card-icon::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ffffff;
}

.lkc-card-field {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 14px;
    border: 1px solid #d5d5da;
    border-radius: 13px;
    color: #77777e;
    background: #ffffff;
    font-size: 14px;
    box-shadow: 0 1px 2px rgba(28, 24, 36, 0.03);
}

.lkc-card-field--number {
    margin-bottom: 10px;
}

.lkc-card-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.lkc-card-brands {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lkc-card-brands span {
    display: inline-flex;
    min-width: 31px;
    height: 20px;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 1px solid #d8d8dd;
    border-radius: 3px;
    color: #335d99;
    background: #f8f9fb;
    font-size: 7px;
    font-weight: 700;
}

.lkc-cvc-icon {
    display: inline-flex;
    width: 30px;
    height: 24px;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0 3px 2px 0;
    border: 2px solid #a6a6ad;
    border-radius: 4px;
    color: #73737a;
    font-size: 8px;
    font-weight: 600;
}

.lkc-payment-note {
    max-width: 580px;
    margin: 28px 8px 0;
    font-size: 13px;
    line-height: 1.35;
}

.lkc-payment-note strong {
    font-weight: 700;
}

.lkc-submit {
    display: flex;
    width: calc(100% - 16px);
    min-height: 49px;
    align-items: center;
    justify-content: center;
    margin: 29px 8px 0;
    padding: 12px 20px;
    border: 0;
    border-radius: 7px;
    color: #ffffff;
    background: var(--lkc-purple);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 400;
    cursor: pointer;
    box-shadow: none;
    transition:
        transform 120ms ease,
        opacity 120ms ease,
        background-color 120ms ease;
}

.lkc-submit:hover {
    background: var(--lkc-purple-dark);
}

.lkc-submit:active {
    transform: scale(0.98);
    opacity: 0.92;
}

.lkc-summary {
    grid-area: summary;
    position: sticky;
    top: 28px;
    overflow: hidden;
    min-width: 0;
    min-height: 590px;
    border-radius: 9px;
    background:
        linear-gradient(
            180deg,
            #fbfbfd 0%,
            #fbf9ff 18%,
            #f0eaff 58%,
            #e5dafd 100%
        );
}

.lkc-summary-content {
    padding: 34px 48px 26px;
}

.lkc-summary-title {
    margin: 0 0 14px;
    font-size: clamp(30px, 2vw, 40px);
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -0.045em;
}

.lkc-today-price {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 5px;
}

.lkc-today-price strong {
    color: var(--lkc-purple);
    font-size: clamp(52px, 4.1vw, 68px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.055em;
}

.lkc-today-price span {
    padding-top: 9px;
    font-size: clamp(20px, 1.65vw, 28px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.035em;
}

.lkc-trial-copy {
    margin: 0 0 25px;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.lkc-benefits {
    display: grid;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lkc-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: clamp(21px, 1.6vw, 29px);
    line-height: 1.13;
    font-weight: 400;
    letter-spacing: -0.035em;
}

.lkc-benefits img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex: 0 0 auto;
}

.lkc-press-logos {
    display: block;
    width: min(100%, 370px);
    height: auto;
    margin-top: 32px;
}

.lkc-press-logos > svg,
.lkc-press-logos > img {
    display: block;
    width: 100%;
    height: auto;
}

.lkc-testimonial {
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 190px;
    margin: -12px 35px 18px;
    border-radius: 8px;
    overflow: hidden;
}

.lkc-testimonial-intro {
    display: flex;
    align-items: center;
    padding: 28px 34px;
    color: #ffffff;
    background: var(--lkc-purple);
}

.lkc-testimonial-intro p {
    margin: 0;
    font-size: clamp(16px, 1.35vw, 21px);
    line-height: 1.35;
    font-weight: 400;
    letter-spacing: -0.03em;
}

.lkc-testimonial-quote {
    position: relative;
    min-width: 0;
    min-height: 190px;
    padding: 25px 170px 26px 50px;
    background: rgba(255, 255, 255, 0.9);
}

.lkc-testimonial-arrow {
    position: absolute;
    top: 50%;
    left: 12px;
    z-index: 2;
    display: flex;
    width: 23px;
    height: 23px;
    align-items: center;
    justify-content: center;
    padding: 0 0 2px;
    transform: translateY(-50%);
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: #000000;
    font-size: 21px;
    line-height: 1;
    cursor: default;
}

.lkc-testimonial-quote blockquote {
    position: relative;
    z-index: 2;
    margin: 0;
    max-width: 420px;
    font-size: clamp(13px, 1.05vw, 17px);
    line-height: 1.37;
    font-weight: 400;
    letter-spacing: -0.025em;
}

.lkc-testimonial-author {
    position: relative;
    z-index: 2;
    margin: 7px 0 0;
    max-width: 410px;
    font-size: 10px;
    line-height: 1.35;
    font-weight: 400;
}

.lkc-testimonial-photo {
    position: absolute;
    right: -8px;
    bottom: 0;
    z-index: 1;
    display: block;
    width: auto;
    height: 220px;
    max-width: 205px;
    object-fit: contain;
    object-position: right bottom;
}

/* ==========================================================
   GRAND ÉCRAN : 1440 px et plus
   ========================================================== */

@media (min-width: 1440px) {
    .lkc-page {
        padding-right: 48px;
        padding-left: 48px;
    }

    .lkc-layout {
        column-gap: clamp(64px, 5.5vw, 92px);
    }

    .lkc-summary-content {
        padding-right: 52px;
        padding-left: 52px;
    }
}

/* ==========================================================
   DESKTOP / PETIT ORDINATEUR : 1025 px à 1439 px
   ========================================================== */

@media (min-width: 1025px) and (max-width: 1439px) {
    .lkc-page {
        padding: 32px 28px 46px;
    }

    .lkc-layout {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        column-gap: clamp(30px, 3.5vw, 52px);
    }

    .lkc-heading {
        gap: 14px;
    }

    .lkc-title {
        font-size: 26px;
    }

    .lkc-summary-content {
        padding: 30px 34px 24px;
    }

    .lkc-testimonial {
        margin: -10px 22px 16px;
    }

    .lkc-testimonial-quote {
        padding-right: 145px;
        padding-left: 43px;
    }

    .lkc-testimonial-photo {
        height: 200px;
        max-width: 180px;
    }
}

/* ==========================================================
   TABLETTE : 768 px à 1024 px
   ========================================================== */

@media (min-width: 768px) and (max-width: 1024px) {
    .lkc-page {
        padding: 28px 24px 42px;
    }

    .lkc-layout {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
            "heading"
            "summary"
            "form";
        row-gap: 26px;
        width: min(100%, 760px);
    }

    .lkc-heading {
        align-items: center;
    }

    .lkc-title {
        font-size: 30px;
    }

    .lkc-summary {
        position: relative;
        top: auto;
        min-height: 0;
    }

    .lkc-summary-content {
        padding: 30px 34px 26px;
    }

    .lkc-fields-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lkc-stripe-placeholder {
        max-width: none;
        padding-right: 0;
        padding-left: 0;
    }

    .lkc-testimonial {
        margin: -8px 24px 18px;
    }
}

/* ==========================================================
   MOBILE : jusqu'à 767 px
   ========================================================== */

@media (max-width: 767px) {
    .lkc-page {
        padding: 21px 15px 34px;
    }

    .lkc-layout {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
            "heading"
            "summary"
            "form";
        row-gap: 20px;
        width: min(100%, 620px);
    }

    .lkc-heading {
        align-items: flex-start;
        gap: 12px;
    }

    .lkc-title {
        font-size: 28px;
        line-height: 1.12;
    }

    .lkc-steps {
        transform: scale(0.88);
        transform-origin: right top;
    }

    .lkc-summary {
        position: relative;
        top: auto;
        min-height: 0;
        overflow: visible;
        border-radius: 0;
        background: #ffffff;
    }

    .lkc-fields-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }

    .lkc-field label,
    .lkc-field-label {
        font-size: 16px;
    }

    .lkc-field input,
    .lkc-activity-trigger {
        height: 52px;
        font-size: 16px;
    }

    .lkc-business-confirmation {
        margin-top: 16px;
    }

    .lkc-business-confirmation span {
        font-size: 13px;
    }

    .lkc-payment-heading {
        display: block;
    }

    .lkc-stripe-placeholder {
        max-width: none;
        padding-right: 0;
        padding-left: 0;
    }

    .lkc-card-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .lkc-payment-note {
        margin-right: 0;
        margin-left: 0;
    }

    .lkc-submit {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
        font-size: 18px;
    }

    .lkc-summary-content {
        padding: 27px 24px 24px;
    }

    .lkc-summary-title {
        font-size: 29px;
    }

    .lkc-today-price strong {
        font-size: 55px;
    }

    .lkc-today-price span {
        font-size: 21px;
    }

    .lkc-benefits li {
        font-size: 20px;
    }

    .lkc-press-logos {
        width: min(100%, 330px);
        margin-top: 25px;
    }

    .lkc-testimonial {
        position: relative;
        display: block;
        width: calc(100% + 30px);
        margin: -4px -15px 0;
        padding: 86px 18px 0;
        border-radius: 0;
        background: var(--lkc-purple);
        overflow: hidden;
    }

    .lkc-testimonial-intro {
        display: none;
    }

    .lkc-testimonial-quote {
        position: relative;
        min-height: 0;
        padding: 190px 24px 36px;
        border-radius: 30px 30px 0 0;
        background: #ffffff;
        text-align: center;
    }

    .lkc-testimonial-quote::before {
        content: "";
        position: absolute;
        top: 168px;
        left: 50%;
        width: min(72%, 375px);
        height: 1px;
        transform: translateX(-50%);
        background: #8f8f94;
    }

    .lkc-testimonial-arrow {
        display: none;
    }

    .lkc-testimonial-quote blockquote {
        max-width: 500px;
        margin: 0 auto;
        font-size: clamp(18px, 4.7vw, 22px);
        line-height: 1.38;
        font-weight: 400;
        letter-spacing: -0.025em;
        text-align: center;
    }

    .lkc-testimonial-author {
        max-width: none;
        margin: 26px auto 0;
        font-size: 13px;
        line-height: 1.4;
        text-align: center;
    }

    .lkc-testimonial-photo {
        top: -78px;
        right: auto;
        bottom: auto;
        left: 50%;
        width: auto;
        height: 245px;
        max-width: 240px;
        transform: translateX(-50%);
        object-position: center bottom;
    }
}

/* ==========================================================
   PETIT MOBILE : jusqu'à 480 px
   ========================================================== */

@media (max-width: 480px) {
    .lkc-heading {
        display: block;
    }

    .lkc-title {
        font-size: 26px;
    }

    .lkc-steps {
        margin-top: 15px;
        transform-origin: left top;
    }

    .lkc-section-heading {
        align-items: flex-start;
    }

    .lkc-section-heading h2 {
        font-size: 23px;
    }

    .lkc-card-field {
        padding-right: 11px;
        padding-left: 11px;
    }

    .lkc-card-brands {
        gap: 2px;
    }

    .lkc-card-brands span {
        min-width: 28px;
    }

    .lkc-summary-content {
        padding-right: 20px;
        padding-left: 20px;
    }

    .lkc-testimonial {
        margin: -2px -15px 0;
        padding: 78px 12px 0;
    }

    .lkc-testimonial-quote {
        padding: 176px 18px 32px;
        border-radius: 28px 28px 0 0;
    }

    .lkc-testimonial-quote::before {
        top: 156px;
        width: 76%;
    }

    .lkc-testimonial-quote blockquote {
        font-size: 18px;
        line-height: 1.42;
    }

    .lkc-testimonial-author {
        margin-top: 24px;
        font-size: 12px;
    }

    .lkc-testimonial-photo {
        top: -70px;
        height: 222px;
        max-width: 215px;
    }
}

/* ==========================================================
   FENÊTRE DE CONFIRMATION D’INSCRIPTION
   ========================================================== */

body.lkc-modal-open {
    overflow: hidden;
}

.lkc-confirmation-modal[hidden] {
    display: none;
}

.lkc-confirmation-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 24px;
    font-family: "Poppins", Arial, sans-serif;
}

.lkc-confirmation-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.58);
    backdrop-filter: blur(3px);
}

.lkc-confirmation-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 590px);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 38px 40px 34px;
    border-radius: 18px;
    background: #ffffff;
    color: #111111;
    text-align: center;
    box-shadow: 0 24px 70px rgba(28, 24, 36, 0.24);
}

.lkc-confirmation-modal__icon {
    display: flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #8562d9;
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
}

.lkc-confirmation-modal__dialog h2 {
    margin: 0 0 22px;
    color: #111111;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.035em;
}

.lkc-confirmation-modal__text {
    color: #34343a;
    font-size: 15px;
    line-height: 1.6;
}

.lkc-confirmation-modal__text p {
    margin: 0;
}

.lkc-confirmation-modal__text p + p {
    margin-top: 15px;
}

.lkc-confirmation-modal__text strong {
    color: #111111;
    font-weight: 600;
}

#lkc-confirmation-email {
    overflow-wrap: anywhere;
}

.lkc-confirmation-modal__text a {
    color: #7551d0;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.lkc-confirmation-modal__button {
    display: flex;
    width: 100%;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    padding: 12px 22px;
    border: 0;
    border-radius: 8px;
    background: #8562d9;
    color: #ffffff;
    font: inherit;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color 140ms ease, transform 120ms ease;
}

.lkc-confirmation-modal__button:hover,
.lkc-confirmation-modal__button:focus-visible {
    background: #7551d0;
}

.lkc-confirmation-modal__button:focus-visible {
    outline: 3px solid rgba(133, 98, 217, 0.24);
    outline-offset: 3px;
}

.lkc-confirmation-modal__button:active {
    transform: scale(0.985);
}

@media (max-width: 600px) {
    .lkc-confirmation-modal {
        align-items: end;
        padding: 14px;
    }

    .lkc-confirmation-modal__dialog {
        width: 100%;
        max-height: calc(100vh - 28px);
        padding: 30px 22px 24px;
        border-radius: 20px;
    }

    .lkc-confirmation-modal__icon {
        width: 52px;
        height: 52px;
        margin-bottom: 17px;
        font-size: 25px;
    }

    .lkc-confirmation-modal__dialog h2 {
        margin-bottom: 18px;
        font-size: 24px;
        line-height: 1.24;
    }

    .lkc-confirmation-modal__text {
        font-size: 14px;
        line-height: 1.55;
    }

    .lkc-confirmation-modal__text p + p {
        margin-top: 13px;
    }

    .lkc-confirmation-modal__button {
        min-height: 48px;
        margin-top: 24px;
        font-size: 16px;
    }
}

@media (max-width: 380px) {
    .lkc-confirmation-modal {
        padding: 10px;
    }

    .lkc-confirmation-modal__dialog {
        padding: 26px 18px 20px;
    }

    .lkc-confirmation-modal__dialog h2 {
        font-size: 22px;
    }
}

/* ==========================================================
   OFFRE GRATUITE — rapproche le formulaire du titre sur desktop
   ========================================================== */

@media (min-width: 1025px) {
    .lkc-page--gratuit .lkc-form-panel {
        margin-top: -90px;
    }
}

