:root {
    --go-bg: #f4f7fb;
    --go-surface: #ffffff;
    --go-surface-soft: #edf4ff;
    --go-text: #13213a;
    --go-muted: #64748b;
    --go-border: #dbe4ef;
    --go-primary: #2563eb;
    --go-primary-dark: #1d4ed8;
    --go-success: #0f9f6e;
    --go-danger: #c9362b;
    --go-shadow: 0 24px 60px rgba(26, 52, 90, 0.14);
    --go-radius-xl: 30px;
    --go-radius-lg: 22px;
    --go-radius-md: 15px;
    --go-container: 1240px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--go-text);
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(37, 99, 235, 0.12),
            transparent 34rem
        ),
        var(--go-bg);
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.55;
}

button,
input,
textarea,
select {
    font: inherit;
}

a {
    color: inherit;
}

.go-main {
    width: 100%;
    min-height: calc(100vh - 76px);
}

/* =========================================================
   EN-TÊTE
   ========================================================= */

.go-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(219, 228, 239, 0.92);
    backdrop-filter: blur(18px);
}

.go-header__inner {
    width: min(calc(100% - 32px), var(--go-container));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.go-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.go-brand__name {
    color: var(--go-text);
    font-size: 1.35rem;
    font-weight: 850;
    letter-spacing: -0.04em;
}

.go-brand__go {
    min-width: 56px;
    height: 38px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(
        145deg,
        #3478ff,
        #1850d4
    );
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.30);
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.09em;
}

.go-navigation {
    display: flex;
    align-items: center;
    gap: 8px;
}

.go-navigation a {
    padding: 11px 14px;
    color: #485a74;
    border-radius: 13px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition:
        color 0.18s ease,
        background 0.18s ease,
        transform 0.18s ease;
}

.go-navigation a:hover,
.go-navigation a.is-active {
    color: var(--go-primary);
    background: #edf3ff;
}

.go-navigation__signup {
    color: #ffffff !important;
    background: var(--go-primary);
}

.go-navigation__signup:hover {
    background: var(--go-primary-dark) !important;
    transform: translateY(-1px);
}

.go-navigation-toggle {
    display: none;
}

/* =========================================================
   SECTION PRINCIPALE
   ========================================================= */

.go-hero {
    width: min(calc(100% - 40px), var(--go-container));
    margin: 0 auto;
    padding: 72px 0 56px;
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(420px, 0.95fr);
    gap: 54px;
    align-items: start;
}

.go-hero__copy {
    min-width: 0;
    padding-top: 22px;
}

.go-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 13px;
    color: var(--go-primary-dark);
    background: #eaf1ff;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.go-hero__copy h1 {
    max-width: 760px;
    margin: 22px 0 20px;
    color: var(--go-text);
    font-size: clamp(3.3rem, 5.5vw, 5.8rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.go-hero__lead {
    max-width: 760px;
    margin: 0;
    color: var(--go-muted);
    font-size: clamp(1.08rem, 1.55vw, 1.28rem);
    line-height: 1.68;
}

/* =========================================================
   AVANTAGES
   ========================================================= */

.go-trust-grid {
    margin-top: 38px;
    display: grid;
    gap: 8px;
}

.go-trust-grid article {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    column-gap: 14px;
    padding: 15px 0;
}

.go-trust-grid article > span {
    grid-row: 1 / 3;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--go-primary);
    background: #eaf1ff;
    border-radius: 50%;
    font-size: 0.88rem;
    font-weight: 900;
}

.go-trust-grid strong {
    align-self: end;
    color: var(--go-text);
    font-size: 1.02rem;
}

.go-trust-grid p {
    margin: 4px 0 0;
    color: var(--go-muted);
}

/* =========================================================
   INVITATION AU COMPTE
   ========================================================= */

.go-account-invite {
    margin-top: 30px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid #cfe0ff;
    border-radius: var(--go-radius-lg);
    background:
        linear-gradient(
            145deg,
            #f8fbff,
            #edf4ff
        );
}

.go-account-invite strong {
    font-size: 1.05rem;
}

.go-account-invite p {
    margin: 6px 0 0;
    color: var(--go-muted);
}

.go-account-invite a {
    flex: 0 0 auto;
    padding: 12px 16px;
    color: var(--go-primary);
    background: #ffffff;
    border: 1px solid #cfe0ff;
    border-radius: 13px;
    font-size: 0.9rem;
    font-weight: 850;
    text-decoration: none;
    white-space: nowrap;
}

/* =========================================================
   PANNEAU D’ENVOI
   ========================================================= */

.go-upload-panel {
    position: relative;
    min-width: 0;
    padding: 30px;
    overflow: hidden;
    background: var(--go-surface);
    border: 1px solid var(--go-border);
    border-radius: var(--go-radius-xl);
    box-shadow: var(--go-shadow);
}

.go-upload-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 6px;
    background:
        linear-gradient(
            90deg,
            #2563eb,
            #4b85ff,
            #39b8ff
        );
}

.go-upload-panel__header {
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.go-panel-kicker {
    display: inline-flex;
    padding: 7px 11px;
    color: #086247;
    background: #e7f8f1;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.go-upload-panel h2 {
    margin: 12px 0 0;
    font-size: clamp(1.65rem, 2.6vw, 2.15rem);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.go-limit-pill {
    flex: 0 0 auto;
    padding: 9px 12px;
    color: var(--go-primary-dark);
    background: #edf3ff;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 850;
    white-space: nowrap;
}

/* =========================================================
   ALERTES
   ========================================================= */

.go-alert {
    margin-bottom: 18px;
    padding: 13px 15px;
    border-radius: 13px;
    font-weight: 700;
}

.go-alert--error {
    color: #8d1f16;
    background: #ffebe8;
    border: 1px solid #ffc9c2;
}

.go-alert--success {
    color: #096445;
    background: #e8f8f1;
    border: 1px solid #bee9d8;
}

/* =========================================================
   FORMULAIRE
   ========================================================= */

.go-form {
    display: grid;
    gap: 18px;
}

.go-form > label,
.go-form-grid label {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.go-form label > span {
    color: var(--go-text);
    font-size: 0.91rem;
    font-weight: 800;
}

.go-form input,
.go-form textarea,
.go-form select {
    width: 100%;
    min-width: 0;
    padding: 13px 14px;
    color: var(--go-text);
    background: #ffffff;
    border: 1px solid var(--go-border);
    border-radius: 13px;
    outline: none;
    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

.go-form textarea {
    min-height: 108px;
    resize: vertical;
}

.go-form input:focus,
.go-form textarea:focus,
.go-form select:focus {
    border-color: var(--go-primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.11);
}

.go-form small {
    color: var(--go-muted);
    font-size: 0.81rem;
}

.go-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

/* =========================================================
   ZONE DE DÉPÔT
   ========================================================= */

.go-dropzone {
    position: relative;
    min-height: 215px;
    padding: 26px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f4f8ff
        );
    border: 2px dashed #b9c9df;
    border-radius: 22px;
    transition:
        border-color 0.18s ease,
        background 0.18s ease,
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.go-dropzone:hover,
.go-dropzone.is-dragover {
    border-color: var(--go-primary);
    background: #eef4ff;
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.12);
}

.go-dropzone__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--go-primary);
    background: #eaf1ff;
    border-radius: 20px;
    font-size: 1.85rem;
    font-weight: 900;
}

.go-dropzone strong {
    color: var(--go-text);
    font-size: 1.05rem;
}

.go-dropzone > span:not(.go-dropzone__icon) {
    margin-top: 3px;
    color: var(--go-muted);
}

.go-dropzone small {
    margin-top: 8px;
}

.go-dropzone input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.go-file-summary {
    min-height: 24px;
    margin-top: -8px;
    color: var(--go-muted);
    font-size: 0.87rem;
}

/* =========================================================
   CONDITIONS ET BOUTON GO
   ========================================================= */

.go-form__terms {
    padding: 14px;
    color: var(--go-muted);
    background: #f7f9fc;
    border: 1px solid var(--go-border);
    border-radius: 13px;
    font-size: 0.82rem;
    line-height: 1.5;
}

.go-submit-wrap {
    display: flex;
    justify-content: center;
    padding-top: 4px;
}

.go-submit {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.go-submit__circle {
    width: 114px;
    height: 114px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 32% 24%,
            rgba(255, 255, 255, 0.30),
            transparent 26%
        ),
        linear-gradient(
            145deg,
            #3c7cff,
            #1550d5
        );
    border-radius: 50%;
    box-shadow:
        0 22px 42px rgba(37, 99, 235, 0.34),
        inset 0 0 0 3px rgba(255, 255, 255, 0.18);
    font-size: 2rem;
    font-weight: 950;
    letter-spacing: 0.09em;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.go-submit:hover .go-submit__circle {
    transform: translateY(-3px) scale(1.04);
    box-shadow:
        0 28px 50px rgba(37, 99, 235, 0.42),
        inset 0 0 0 3px rgba(255, 255, 255, 0.22);
}

.go-submit:focus-visible {
    outline: none;
}

.go-submit:focus-visible .go-submit__circle {
    box-shadow:
        0 0 0 4px #ffffff,
        0 0 0 8px rgba(37, 99, 235, 0.28),
        0 22px 42px rgba(37, 99, 235, 0.34);
}

.go-submit__label {
    color: var(--go-text);
    font-size: 0.94rem;
    font-weight: 850;
}

.go-submit[disabled] {
    opacity: 0.58;
    cursor: not-allowed;
}

.go-upgrade-note {
    margin: 22px 0 0;
    color: var(--go-muted);
    text-align: center;
    font-size: 0.85rem;
}

.go-upgrade-note a {
    color: var(--go-primary);
    font-weight: 800;
}

/* =========================================================
   COMMENT ÇA FONCTIONNE
   ========================================================= */

.go-how {
    width: 100%;
    padding: 78px 24px;
    background: rgba(255, 255, 255, 0.70);
    border-top: 1px solid var(--go-border);
    border-bottom: 1px solid var(--go-border);
}

.go-section-heading {
    width: min(100%, 760px);
    margin: 0 auto 36px;
    text-align: center;
}

.go-section-heading h2 {
    margin: 14px 0 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.go-how__grid {
    width: min(100%, var(--go-container));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.go-how__grid article {
    padding: 26px;
    background: #ffffff;
    border: 1px solid var(--go-border);
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(26, 52, 90, 0.07);
}

.go-how__grid b {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--go-primary);
    background: #eaf1ff;
    border-radius: 50%;
}

.go-how__grid h3 {
    margin: 0 0 8px;
    font-size: 1.08rem;
}

.go-how__grid p {
    margin: 0;
    color: var(--go-muted);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {
    .go-hero {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(380px, 0.9fr);
        gap: 34px;
    }

    .go-hero__copy h1 {
        font-size: clamp(3rem, 5vw, 4.8rem);
    }
}

@media (max-width: 900px) {
    .go-hero {
        grid-template-columns: 1fr;
        padding-top: 46px;
    }

    .go-hero__copy {
        padding-top: 0;
    }

    .go-upload-panel {
        width: min(100%, 720px);
        margin: 0 auto;
    }

    .go-how__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {
    .go-navigation-toggle {
        width: 44px;
        height: 44px;
        padding: 10px;
        display: block;
        background: #ffffff;
        border: 1px solid var(--go-border);
        border-radius: 13px;
        cursor: pointer;
    }

    .go-navigation-toggle span {
        display: block;
        height: 2px;
        margin: 5px 0;
        background: var(--go-text);
        border-radius: 999px;
    }

    .go-navigation {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        padding: 14px 16px 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: #ffffff;
        border-bottom: 1px solid var(--go-border);
        box-shadow: 0 16px 30px rgba(26, 52, 90, 0.10);
    }

    .go-navigation.is-open {
        display: flex;
    }

    .go-account-invite {
        align-items: flex-start;
        flex-direction: column;
    }

    .go-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .go-header__inner {
        width: min(calc(100% - 20px), var(--go-container));
        min-height: 68px;
    }

    .go-hero {
        width: min(calc(100% - 20px), var(--go-container));
        padding: 34px 0 38px;
    }

    .go-hero__copy h1 {
        font-size: clamp(2.6rem, 13vw, 3.8rem);
        line-height: 0.98;
    }

    .go-hero__lead {
        font-size: 1rem;
    }

    .go-trust-grid article {
        grid-template-columns: 40px minmax(0, 1fr);
        column-gap: 10px;
    }

    .go-trust-grid article > span {
        width: 38px;
        height: 38px;
    }

    .go-upload-panel {
        padding: 22px 16px;
        border-radius: 22px;
    }

    .go-upload-panel__header {
        flex-direction: column;
    }

    .go-dropzone {
        min-height: 190px;
        padding: 20px 14px;
    }

    .go-submit__circle {
        width: 98px;
        height: 98px;
    }

    .go-how {
        padding: 54px 12px;
    }
}

/* =========================================================
   FOOTER FINDZLE GO
   ========================================================= */

.go-footer {
    width: 100%;
    margin-top: 0;
    color: #dce8ff;
    background:
        linear-gradient(
            145deg,
            #10203c,
            #162b4f
        );
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.go-footer__inner {
    width: min(calc(100% - 40px), 1240px);
    margin: 0 auto;
    padding: 48px 0 28px;
}

.go-footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.go-footer__identity {
    max-width: 480px;
}

.go-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    text-decoration: none;
}

.go-footer__name {
    font-size: 1.4rem;
    font-weight: 850;
    letter-spacing: -0.04em;
}

.go-footer__go {
    min-width: 54px;
    height: 36px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            #3c7cff,
            #1550d5
        );
    border-radius: 999px;
    box-shadow:
        0 10px 24px rgba(37, 99, 235, 0.32);
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.go-footer__message {
    margin: 16px 0 0;
    color: #aebed7;
    font-size: 0.95rem;
    line-height: 1.6;
}

.go-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 20px;
}

.go-footer__links a {
    color: #dce8ff;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 650;
    transition:
        color 0.18s ease,
        transform 0.18s ease;
}

.go-footer__links a:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.go-footer__bottom {
    margin-top: 34px;
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #8fa2bf;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.84rem;
}

.go-footer__bottom p {
    margin: 0;
}

@media (max-width: 760px) {
    .go-footer__inner {
        width: min(calc(100% - 24px), 1240px);
        padding: 38px 0 24px;
    }

    .go-footer__top,
    .go-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .go-footer__links {
        justify-content: flex-start;
    }

    .go-footer__bottom {
        gap: 8px;
    }
}

/* =========================================================
   FORFAITS FINDZLE GO
   ========================================================= */

.go-plans {
    width: 100%;
    padding: 84px 24px;
    background:
        radial-gradient(
            circle at 50% 0,
            rgba(37, 99, 235, 0.10),
            transparent 34rem
        ),
        #f4f7fb;
}

.go-plans__inner {
    width: min(100%, 1240px);
    margin: 0 auto;
}

.go-plans .go-section-heading p {
    margin: 14px auto 0;
    max-width: 760px;
    color: var(--go-muted);
    font-size: 1.05rem;
    line-height: 1.65;
}

.go-plans__grid {
    margin-top: 44px;
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.go-plan-card {
    position: relative;
    min-width: 0;
    padding: 28px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid var(--go-border);
    border-radius: 24px;
    box-shadow:
        0 14px 35px
        rgba(26, 52, 90, 0.08);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.go-plan-card:hover {
    transform: translateY(-5px);
    border-color: #b9cef4;
    box-shadow:
        0 24px 48px
        rgba(26, 52, 90, 0.14);
}

.go-plan-card--featured {
    color: #ffffff;
    background:
        linear-gradient(
            155deg,
            #245fdc,
            #163d9d
        );
    border-color: transparent;
    box-shadow:
        0 28px 60px
        rgba(37, 99, 235, 0.30);
}

.go-plan-card--featured:hover {
    border-color: transparent;
}

.go-plan-card__recommended {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 7px 10px;
    color: #133d9f;
    background: #ffffff;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.go-plan-card__type {
    display: inline-flex;
    padding: 7px 10px;
    color: var(--go-primary);
    background: #edf3ff;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.go-plan-card--featured .go-plan-card__type {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
}

.go-plan-card h3 {
    margin: 18px 0 8px;
    font-size: 1.38rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.go-plan-card__description {
    min-height: 72px;
    margin: 0;
    color: var(--go-muted);
    line-height: 1.5;
}

.go-plan-card--featured .go-plan-card__description {
    color: rgba(255, 255, 255, 0.76);
}

.go-plan-card__price {
    margin: 26px 0 22px;
    display: flex;
    align-items: baseline;
    gap: 7px;
}

.go-plan-card__price strong {
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.05em;
}

.go-plan-card__price span {
    color: var(--go-muted);
    font-size: 0.84rem;
}

.go-plan-card--featured
.go-plan-card__price span {
    color: rgba(255, 255, 255, 0.70);
}

.go-plan-card__features {
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    gap: 11px;
    list-style: none;
}

.go-plan-card__features li {
    position: relative;
    padding-left: 24px;
    color: #42526a;
    font-size: 0.9rem;
    line-height: 1.45;
}

.go-plan-card__features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--go-success);
    font-weight: 900;
}

.go-plan-card--featured
.go-plan-card__features li {
    color: rgba(255, 255, 255, 0.90);
}

.go-plan-card--featured
.go-plan-card__features li::before {
    color: #92f2ce;
}

.go-plan-card__button {
    min-height: 48px;
    margin-top: auto;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--go-primary);
    border-radius: 13px;
    font-weight: 850;
    text-align: center;
    text-decoration: none;
    transition:
        background 0.18s ease,
        transform 0.18s ease;
}

.go-plan-card__button:hover {
    background: var(--go-primary-dark);
    transform: translateY(-1px);
}

.go-plan-card__button--secondary {
    color: var(--go-primary);
    background: #edf3ff;
}

.go-plan-card__button--secondary:hover {
    color: #ffffff;
}

.go-plan-card--featured
.go-plan-card__button {
    color: #1744ad;
    background: #ffffff;
}

.go-plan-card--featured
.go-plan-card__button:hover {
    color: #11398f;
    background: #eef4ff;
}

.go-plan-card__button--dark {
    background: #17233a;
}

.go-plan-card__button--dark:hover {
    background: #0e1729;
}

.go-plans__note {
    margin-top: 34px;
    padding: 26px;
    display: flex;
    align-items: center;
    gap: 24px;
    background: #ffffff;
    border: 1px solid var(--go-border);
    border-radius: 20px;
}

.go-plans__note strong {
    flex: 0 0 auto;
}

.go-plans__note p {
    flex: 1;
    margin: 0;
    color: var(--go-muted);
}

.go-plans__note a {
    flex: 0 0 auto;
    color: var(--go-primary);
    font-weight: 850;
    text-decoration: none;
}

@media (max-width: 1120px) {
    .go-plans__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .go-plans {
        padding:
            58px
            12px;
    }

    .go-plans__grid {
        grid-template-columns: 1fr;
    }

    .go-plan-card__description {
        min-height: 0;
    }

    .go-plans__note {
        flex-direction: column;
        align-items: flex-start;
    }
}

#avantages,
#fonctionnement,
#forfaits {
    scroll-margin-top: 110px;
}

/* =========================================================
   PAGE TRANSFERT TERMINÉ
   ========================================================= */

.go-sent-page {
    width: 100%;
    min-height: calc(100vh - 76px);
    padding: 72px 24px 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(
            circle at 50% 8%,
            rgba(37, 99, 235, 0.14),
            transparent 34rem
        ),
        #f4f7fb;
}

.go-sent-page__inner {
    width: min(100%, 860px);
    margin: 0 auto;
}

.go-sent-card {
    position: relative;
    padding: 46px;
    overflow: hidden;
    text-align: center;
    background: #ffffff;
    border: 1px solid var(--go-border);
    border-radius: 30px;
    box-shadow:
        0 28px 70px
        rgba(26, 52, 90, 0.16);
}

.go-sent-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 6px;
    background:
        linear-gradient(
            90deg,
            #2563eb,
            #47a3ff,
            #22c98b
        );
}

.go-sent-card__success {
    width: 88px;
    height: 88px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            #1bc487,
            #0c9f6f
        );
    border-radius: 50%;
    box-shadow:
        0 18px 38px
        rgba(15, 159, 110, 0.28);
}

.go-sent-card__success span {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.go-sent-card h1 {
    margin: 20px 0 14px;
    color: var(--go-text);
    font-size: clamp(2.5rem, 6vw, 4.4rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

.go-sent-card__lead {
    max-width: 640px;
    margin: 0 auto;
    color: var(--go-muted);
    font-size: 1.08rem;
    line-height: 1.65;
}

.go-sent-summary {
    margin: 34px 0 26px;
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.go-sent-summary__item {
    padding: 18px 14px;
    display: grid;
    gap: 5px;
    background: #f7f9fc;
    border: 1px solid var(--go-border);
    border-radius: 16px;
}

.go-sent-summary__item span {
    color: var(--go-muted);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.go-sent-summary__item strong {
    color: var(--go-text);
    font-size: 1rem;
}

.go-link-box {
    padding: 22px;
    text-align: left;
    background:
        linear-gradient(
            145deg,
            #f8fbff,
            #edf4ff
        );
    border: 1px solid #cfe0ff;
    border-radius: 20px;
}

.go-link-box label {
    display: block;
    margin-bottom: 9px;
    color: var(--go-text);
    font-size: 0.9rem;
    font-weight: 850;
}

.go-link-box__row {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto;
    gap: 10px;
}

.go-link-box input {
    width: 100%;
    min-width: 0;
    padding: 14px 15px;
    color: #253a5d;
    background: #ffffff;
    border: 1px solid #c5d7f0;
    border-radius: 13px;
    outline: none;
}

.go-copy-button {
    min-height: 50px;
    padding: 0 18px;
    color: #ffffff;
    background: var(--go-primary);
    border: 0;
    border-radius: 13px;
    cursor: pointer;
    font-weight: 850;
    transition:
        background 0.18s ease,
        transform 0.18s ease;
}

.go-copy-button:hover {
    background: var(--go-primary-dark);
    transform: translateY(-1px);
}

.go-copy-status {
    min-height: 20px;
    margin: 8px 0 0;
    color: var(--go-success);
    font-size: 0.83rem;
    font-weight: 700;
}

.go-sent-recipient {
    margin-top: 18px;
    padding: 15px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
    background: #ffffff;
    border: 1px solid var(--go-border);
    border-radius: 15px;
}

.go-sent-recipient span {
    color: var(--go-muted);
    font-size: 0.88rem;
}

.go-sent-recipient strong {
    overflow-wrap: anywhere;
}

.go-sent-actions {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.go-sent-button {
    min-height: 50px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-weight: 850;
    text-decoration: none;
    transition:
        transform 0.18s ease,
        background 0.18s ease;
}

.go-sent-button:hover {
    transform: translateY(-2px);
}

.go-sent-button--primary {
    color: #ffffff;
    background: var(--go-primary);
}

.go-sent-button--primary:hover {
    background: var(--go-primary-dark);
}

.go-sent-button--secondary {
    color: var(--go-primary);
    background: #edf3ff;
    border: 1px solid #cfe0ff;
}

.go-sent-security {
    margin-top: 28px;
    padding-top: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    color: var(--go-muted);
    border-top: 1px solid var(--go-border);
}

.go-sent-security p {
    margin: 0;
    font-size: 0.87rem;
}

/* Mobile */

@media (max-width: 680px) {
    .go-sent-page {
        padding:
            36px
            12px
            54px;
    }

    .go-sent-card {
        padding:
            34px
            18px;
        border-radius: 22px;
    }

    .go-sent-card h1 {
        font-size: clamp(
            2.35rem,
            12vw,
            3.4rem
        );
    }

    .go-sent-summary {
        grid-template-columns: 1fr;
    }

    .go-link-box__row {
        grid-template-columns: 1fr;
    }

    .go-copy-button {
        width: 100%;
    }

    .go-sent-recipient {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .go-sent-actions {
        flex-direction: column;
    }

    .go-sent-button {
        width: 100%;
    }
}

.go-alert {
    position: relative;
    padding: 16px 18px 16px 52px;
    border-radius: 16px;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.5;
}

.go-alert::before {
    position: absolute;
    top: 50%;
    left: 18px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    font-weight: 900;
}

.go-alert--error {
    color: #8f241b;
    background: #fff2f0;
    border: 1px solid #ffc9c2;
    box-shadow: 0 10px 24px rgba(201, 54, 43, 0.08);
}

.go-alert--error::before {
    content: "!";
    color: #ffffff;
    background: #d94337;
}

.go-alert--success {
    color: #08704c;
    background: #ecfaf4;
    border: 1px solid #bdebd8;
}

.go-alert--success::before {
    content: "✓";
    color: #ffffff;
    background: #0f9f6e;
}
/* =========================================================
   PAGE PUBLIQUE DE TÉLÉCHARGEMENT
   ========================================================= */
.go-share-page {
    width: 100%;
    min-height: calc(100vh - 76px);
    padding: 72px 20px 56px;
    background:
        radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.11), transparent 34rem),
        var(--go-bg);
}

.go-share-shell {
    width: min(100%, 880px);
    margin: 0 auto;
}

.go-share-card {
    overflow: hidden;
    background: var(--go-surface);
    border: 1px solid var(--go-border);
    border-radius: var(--go-radius-xl);
    box-shadow: var(--go-shadow);
}

.go-share-card__hero {
    padding: 48px 48px 34px;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(237, 244, 255, 0.9), rgba(255, 255, 255, 0));
}

.go-share-card__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(145deg, #3478ff, #1850d4);
    border-radius: 22px;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28);
}

.go-share-card__icon svg,
.go-share-file__icon svg,
.go-share-button svg,
.go-share-card__security svg {
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.go-share-card__icon svg {
    width: 34px;
    height: 34px;
}

.go-share-page .go-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 13px;
    margin-bottom: 14px;
    color: var(--go-primary-dark);
    background: var(--go-surface-soft);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.go-share-card__hero h1 {
    margin: 0;
    color: var(--go-text);
    font-size: clamp(2rem, 5vw, 3.45rem);
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.go-share-card__lead {
    max-width: 620px;
    margin: 18px auto 0;
    color: var(--go-muted);
    font-size: 1.08rem;
}

.go-share-card__title {
    display: inline-block;
    margin: 18px 0 0;
    padding: 9px 14px;
    color: var(--go-text);
    background: #fff;
    border: 1px solid var(--go-border);
    border-radius: 12px;
    font-weight: 750;
}

.go-share-alert,
.go-share-password,
.go-share-files,
.go-share-card__footer {
    margin-left: 40px;
    margin-right: 40px;
}

.go-share-alert {
    margin-top: 4px;
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 700;
}

.go-share-alert--error {
    color: #991b1b;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.go-share-password {
    margin-bottom: 30px;
    padding: 24px;
    background: #f8fafc;
    border: 1px solid var(--go-border);
    border-radius: var(--go-radius-lg);
}

.go-share-password label {
    display: block;
    margin-bottom: 9px;
    font-weight: 800;
}

.go-share-password__row {
    display: flex;
    gap: 12px;
}

.go-share-password__row input {
    flex: 1;
    min-width: 0;
    height: 52px;
    padding: 0 16px;
    color: var(--go-text);
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 13px;
    outline: none;
}

.go-share-password__row input:focus {
    border-color: var(--go-primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.go-share-files {
    display: grid;
    gap: 14px;
    margin-bottom: 30px;
}

.go-share-file {
    min-width: 0;
    padding: 16px;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--go-border);
    border-radius: 17px;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.go-share-file:hover {
    transform: translateY(-1px);
    border-color: #bfd2f8;
    box-shadow: 0 10px 25px rgba(26, 52, 90, 0.08);
}

.go-share-file__icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    color: var(--go-primary);
    background: var(--go-surface-soft);
    border-radius: 14px;
}

.go-share-file__icon svg {
    width: 25px;
    height: 25px;
}

.go-share-file__details {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.go-share-file__details strong {
    overflow: hidden;
    color: var(--go-text);
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 1rem;
}

.go-share-file__details span {
    color: var(--go-muted);
    font-size: 0.9rem;
}

.go-share-button {
    min-height: 46px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #fff;
    background: var(--go-primary);
    border: 0;
    border-radius: 13px;
    box-shadow: 0 9px 20px rgba(37, 99, 235, 0.20);
    text-decoration: none;
    font-weight: 850;
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.go-share-button:hover {
    color: #fff;
    background: var(--go-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.27);
}

.go-share-button svg {
    width: 19px;
    height: 19px;
}

.go-share-card__footer {
    padding: 22px 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid var(--go-border);
}

.go-share-card__footer > div:first-child {
    display: grid;
    gap: 2px;
}

.go-share-card__footer span {
    color: var(--go-muted);
    font-size: 0.83rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.go-share-card__footer strong {
    color: var(--go-text);
}

.go-share-card__security {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--go-success);
    font-weight: 800;
}

.go-share-card__security svg {
    width: 21px;
    height: 21px;
}

.go-share-help {
    max-width: 680px;
    margin: 20px auto 0;
    color: var(--go-muted);
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 720px) {
    .go-share-page {
        padding: 34px 14px 38px;
    }

    .go-share-card__hero {
        padding: 36px 22px 28px;
    }

    .go-share-alert,
    .go-share-password,
    .go-share-files,
    .go-share-card__footer {
        margin-left: 18px;
        margin-right: 18px;
    }

    .go-share-file {
        grid-template-columns: 46px minmax(0, 1fr);
    }

    .go-share-button--download {
        grid-column: 1 / -1;
        width: 100%;
    }

    .go-share-password__row,
    .go-share-card__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .go-share-button--primary {
        width: 100%;
    }

    .go-share-card__security {
        justify-content: flex-start;
    }
}

.go-share-card__sender {
    margin: 12px 0 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.5;
}

.go-share-card__sender strong {
    color: #17233c;
    font-weight: 700;
}

.go-share-card__sender span {
    color: #64748b;
}

.go-help-page .go-legal__header h1 {
    font-size: clamp(30px, 3.2vw, 44px);
}

/* Titres des pages légales : sécurité, aide, confidentialité, etc. */
.go-legal .go-legal__header h1 {
    max-width: 760px;
    margin: 16px 0 12px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

/* Le titre anglais est souvent plus long */
html[lang="en"] .go-legal .go-legal__header h1 {
    max-width: 760px;
    font-size: clamp(1.9rem, 2.8vw, 2.8rem);
}

@media (max-width: 600px) {
    .go-legal .go-legal__header h1,
    html[lang="en"] .go-legal .go-legal__header h1 {
        max-width: 100%;
        font-size: clamp(1.85rem, 8vw, 2.4rem);
        line-height: 1.12;
    }
}

/* =========================================================
   FINDZLE GO — PAGE TRANSFERT TERMINÉ
   ========================================================= */

.sent-page {
    position: relative;
    min-height: calc(100vh - 96px);
    padding: 64px 24px 96px;
    overflow: hidden;
}

.sent-page::before {
    content: "";
    position: absolute;
    top: -180px;
    left: -180px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(42, 105, 235, 0.15) 0%,
        rgba(42, 105, 235, 0.05) 45%,
        rgba(42, 105, 235, 0) 72%
    );
    pointer-events: none;
}

.sent-page__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.sent-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(20, 51, 94, 0.1);
    border-radius: 28px;
    padding: 48px;
    box-shadow:
        0 24px 70px rgba(24, 55, 101, 0.12),
        0 4px 14px rgba(24, 55, 101, 0.05);
}

.sent-card__success {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.sent-card__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #2269eb,
        #174fc5
    );
    color: #ffffff;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    box-shadow:
        0 14px 30px rgba(34, 105, 235, 0.25);
}

.sent-card__header {
    max-width: 700px;
    margin: 0 auto 36px;
    text-align: center;
}

.sent-card__header .go-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 17px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: rgba(34, 105, 235, 0.1);
    color: #1554d1;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.sent-card__header h1 {
    margin: 0 0 16px;
    color: #102b54;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.sent-card__header p {
    max-width: 640px;
    margin: 0 auto;
    color: #5c6f89;
    font-size: 17px;
    line-height: 1.7;
}

.sent-card__summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.sent-summary__item {
    min-width: 0;
    padding: 20px;
    border: 1px solid #e3eaf4;
    border-radius: 18px;
    background: #f8faff;
}

.sent-summary__label {
    display: block;
    margin-bottom: 7px;
    color: #718198;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.sent-summary__item strong {
    display: block;
    color: #16365f;
    font-size: 17px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.sent-card__link-block {
    margin-bottom: 22px;
}

.sent-card__link-block > label {
    display: block;
    margin-bottom: 10px;
    color: #19385f;
    font-size: 14px;
    font-weight: 750;
}

.sent-link {
    display: flex;
    align-items: stretch;
    gap: 12px;
}

.sent-link input {
    min-width: 0;
    flex: 1;
    height: 52px;
    padding: 0 16px;
    border: 1px solid #cdd8e8;
    border-radius: 14px;
    background: #ffffff;
    color: #17365d;
    font: inherit;
    font-size: 15px;
    outline: none;
    box-shadow: inset 0 1px 2px rgba(19, 47, 84, 0.04);
}

.sent-link input:focus {
    border-color: #2b6ceb;
    box-shadow:
        0 0 0 4px rgba(43, 108, 235, 0.12);
}

.sent-link .go-button {
    flex: 0 0 auto;
    white-space: nowrap;
}

.sent-card__recipient {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
    padding: 17px 20px;
    border: 1px solid #e1e8f2;
    border-radius: 16px;
    background: #f9fbfe;
}

.sent-card__recipient span {
    color: #728198;
    font-size: 14px;
    font-weight: 700;
}

.sent-card__recipient strong {
    min-width: 0;
    color: #17365e;
    font-size: 15px;
    overflow-wrap: anywhere;
    text-align: right;
}

.sent-card__notice {
    margin-bottom: 18px;
    padding: 15px 18px;
    border: 1px solid #dce5f2;
    border-radius: 15px;
    background: #f6f9fe;
    color: #435d7d;
    font-size: 14px;
    line-height: 1.55;
}

.sent-card__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.sent-card__actions .go-button,
.sent-link .go-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 14px;
    font: inherit;
    font-size: 15px;
    font-weight: 750;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background-color 0.18s ease,
        border-color 0.18s ease;
}

.sent-card__actions .go-button:hover,
.sent-link .go-button:hover {
    transform: translateY(-1px);
}

.sent-card__actions .go-button--primary,
.sent-link .go-button--primary {
    background: linear-gradient(
        135deg,
        #2b6deb,
        #1956d5
    );
    border-color: #1d5bd8;
    color: #ffffff;
    box-shadow:
        0 10px 22px rgba(34, 105, 235, 0.2);
}

.sent-card__actions .go-button--primary:hover,
.sent-link .go-button--primary:hover {
    box-shadow:
        0 13px 28px rgba(34, 105, 235, 0.28);
}

.sent-card__actions .go-button--secondary {
    background: #ffffff;
    border-color: #ccd8e8;
    color: #1b4c92;
}

.sent-card__actions .go-button--secondary:hover {
    background: #f5f8fd;
    border-color: #aebed4;
}

.sent-card__temporary {
    max-width: 650px;
    margin: 28px auto 0;
    padding-top: 24px;
    border-top: 1px solid #e7edf5;
    color: #728198;
    font-size: 13px;
    line-height: 1.65;
    text-align: center;
}

/* Tablette */

@media (max-width: 800px) {
    .sent-page {
        padding: 42px 18px 72px;
    }

    .sent-card {
        padding: 36px 28px;
        border-radius: 23px;
    }

    .sent-card__summary {
        grid-template-columns: 1fr;
    }
}

/* Mobile */

@media (max-width: 560px) {
    .sent-page {
        padding: 28px 14px 56px;
    }

    .sent-card {
        padding: 28px 18px;
        border-radius: 20px;
    }

    .sent-card__check {
        width: 62px;
        height: 62px;
        font-size: 30px;
    }

    .sent-card__header h1 {
        font-size: 34px;
    }

    .sent-card__header p {
        font-size: 15px;
    }

    .sent-link {
        flex-direction: column;
    }

    .sent-link input,
    .sent-link .go-button {
        width: 100%;
    }

    .sent-card__recipient {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .sent-card__recipient strong {
        text-align: left;
    }

    .sent-card__actions {
        flex-direction: column;
    }

    .sent-card__actions .go-button {
        width: 100%;
    }
}

