:root{
    --g410-violet:#bf10aa;
    --g410-bleu:#000daa;
    --g410-cyan:#00ceff;

    --g410-text:#0b0f1a;
    --g410-muted: rgba(11,15,26,0.78);
    --g410-border: rgba(0,0,0,0.10);
    --g410-shadow: 0 18px 46px rgba(0,0,0,0.14);
    --g410-radius: 24px;

    --g410-grad: linear-gradient(90deg, var(--g410-violet), var(--g410-bleu), var(--g410-cyan));
}

.g410-hero{
    padding: 22px 0;
    background-size: cover;
    background-position: center;
}

.g410-hero__inner{
    max-width: 1180px;
    margin: 0 auto;
    padding: 22px;
    border-radius: var(--g410-radius);
    border: 1px solid rgba(0,0,0,0.06);
    background:
        radial-gradient(900px 380px at 20% 10%, rgba(191,16,170,0.16), transparent 55%),
        radial-gradient(900px 380px at 80% 20%, rgba(0,206,255,0.14), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.86));
    box-shadow: var(--g410-shadow);

    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 20px;
    align-items: center;
}
.g410-hero__content{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.g410-hero__content h1{
    margin: 0 0 12px;
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.08;
    color: var(--g410-text);
    letter-spacing: -0.02em;
}

.g410-hero__subtitle{
    margin: 0;
    font-size: clamp(16px, 1.45vw, 19px);
    line-height: 1.5;
    font-weight: 700;
    color: rgba(11,15,26,0.92);
}

.g410-hero__bullets{
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.g410-hero__bullet{
    position: relative;
    padding-left: 30px;
    color: rgba(11,15,26,0.86);
    line-height: 1.45;
    margin: 0;
}

.g410-hero__bullet::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0.42em;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--g410-violet), var(--g410-bleu), var(--g410-cyan));
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.g410-hero__panel{
    width: 100%;
    box-sizing: border-box;
    border-radius: 18px;
    padding: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.92);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    overflow: hidden;
}

.g410-hero__cta-btn{
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
    text-decoration: none !important;
}

.g410-hero__cta-arrow{
    font-size: 18px;
    line-height: 1;
    transform: translateY(-1px);
}

.g410-hero__note{
    margin: 10px 0 12px;
    color: rgba(11,15,26,0.78);
    font-size: 14px;
    line-height: 1.45;
}

.g410-hero__chips{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.g410-hero__chip{
    font-size: 12px;
    font-weight: 800;
    padding: 7px 5px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(0,13,170,0.05);
    color: rgba(11,15,26,0.82);
    white-space: nowrap;
    margin: 0;
}

.g410-btn,
.g410-btn:visited{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    background: var(--g410-violet);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.14);
    transition:
        background-color 0.2s ease,
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

.g410-btn--accent{
    background: var(--g410-violet);
    color: #fff;
}

.g410-btn--accent:hover{
    background: #a10e91;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px){
    .g410-hero__inner{
        grid-template-columns: 1fr;
        align-items: stretch;
    }
    .g410-hero__panel{
        margin-top: 6px;
    }
}
.g410-steps{
    position: relative;
    padding: 10px 0 18px;
}

.g410-steps__bar{
    height: 8px;
    border-radius: 999px;
    background: var(--g410-grad);
    margin: 0 0 14px;
}

.g410-steps__grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
}

.g410-step{
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--g410-radius);
    box-shadow: var(--g410-shadow);
    padding: 16px;
}

.g410-step__head{
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 10px;
}

.g410-step__badge{
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #fff;
    flex: 0 0 42px;
    background: linear-gradient(135deg, var(--g410-violet), var(--g410-bleu), var(--g410-cyan));
    border: 2px solid rgba(255,255,255,0.75);
    box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

.g410-step__title{ margin: 0; font-size: 18px; line-height: 1.25; color: var(--g410-text); }
.g410-step__text{ margin: 0; color: rgba(11,15,26,0.82); line-height: 1.55; }
.g410-step__text p{ margin: 0; color: rgba(11,15,26,0.82); }
.g410-step__text p:last-child{ margin-bottom: 0; }
.g410-step__text p:first-child{ margin-top: 0; }

@media (max-width: 780px){
    .g410-steps{ padding-left: 18px; }
    .g410-steps__bar{
        position: absolute; left: 0; top: 10px; bottom: 10px;
        width: 8px; height: auto; margin: 0;
        border-radius: 999px;
        background: linear-gradient(180deg, var(--g410-violet), var(--g410-bleu), var(--g410-cyan));
    }
    .g410-steps__grid{ grid-template-columns: 1fr; gap: 12px; }
}
.g410-testimonial{
    border-radius: var(--g410-radius);
    box-shadow: var(--g410-shadow);
    overflow: hidden;

    border: 2px solid transparent;
    background:
            linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)) padding-box,
            var(--g410-grad) border-box;
}

.g410-testimonial__bar{ height: 8px; background: var(--g410-grad); }

.g410-testimonial__inner{
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 16px;
    padding: 16px;
    align-items: start;
}

.g410-testimonial__photo{
    margin: 0;
    width: 110px; height: 110px;
    border-radius: 999px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--g410-violet), var(--g410-bleu), var(--g410-cyan));
    padding: 3px;
    box-shadow: 0 10px 22px rgba(0,0,0,0.16);
}
.g410-testimonial__photo img{
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 999px;
    display: block;
    background: #fff;
}

.g410-testimonial__quote{ margin: 0 0 12px; border-left: none; padding: 0; }
.g410-testimonial__quote p{
    margin: 0;
    font-size: 22px;
    line-height: 1.45;
    font-weight: 650;
    color: var(--g410-text);
}
.g410-testimonial__quote p::before,
.g410-testimonial__quote p::after{
    font-weight: 900;
    font-size: 38px;
    line-height: 0;
    background: var(--g410-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.g410-testimonial__quote p::before{ content: "“"; margin-right: 8px; vertical-align: -10px; }
.g410-testimonial__quote p::after{ content: "”"; margin-left: 8px; vertical-align: -14px; }

.g410-testimonial__name{ font-weight: 900; }
.g410-testimonial__role{ color: var(--g410-muted); font-size: 14px; }

@media (max-width: 780px){
    .g410-testimonial__inner{ grid-template-columns: 1fr; }
    .g410-testimonial__photo{ width: 92px; height: 92px; }
    .g410-testimonial__quote p{ font-size: 20px; }
}

.g410-cro {
    padding: 18px 0;
}

.g410-cro :where(h1, h2, h3, h4, h5, h6) {
    color: var(--g410-text);
}

.g410-cro :where(h1, h2, h3, h4, h5, h6)::after {
    display: none !important;
}

.g410-cro__inner {
    background: linear-gradient(135deg, rgba(191, 16, 170, 0.05), rgba(0, 13, 170, 0.04));
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.g410-cro__header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
    text-align: center;
}

.g410-cro__title {
    margin: 0;
    font-size: clamp(24px, 3vw, 30px);
    font-weight: 750;
    line-height: 1.14;
    color: #0b0f1a;
}

.g410-cro__body {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.g410-cro__header-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    align-items: center;
}

.g410-cro__header-body > * {
    max-width: 840px;
    width: 100%;
}

.g410-cro p,
.g410-cro ul,
.g410-cro ol {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.g410-cro__header-body :where(p, ul, ol) {
    font-size: 1.1em;
}

.g410-cro__header-body ul {
    padding-left: 1.2em;
    list-style-position: inside;
}

.g410-cro__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.g410-cro__grid > .wp-block-column {
    background: #fff;
    border: 1px solid var(--g410-border);
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.g410-cro__grid > .wp-block-column:first-child {
    margin-left: 0;
}

.g410-cro__grid > .wp-block-column:last-child {
    margin-right: 0;
}

.g410-cro__grid .wp-block-heading:first-child,
.g410-cro__grid .g410-cro__card-heading {
    background: #bf10aa;
    color: #fff;
    padding: 10px 12px;
    border-radius: 12px;
    margin: 0;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 720;
}

.g410-cro__media {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.g410-cro__image {
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.g410-cro__image img {
    display: block;
    width: 100%;
    height: auto;
}

.g410-cro__text {
    margin: 0;
    color: var(--g410-text);
    line-height: 1.5;
    min-height: 1.4em;
}

.g410-cro__text p {
    margin: 0;
}

.g410-cro__text ul {
    margin: 0;
    padding-left: 18px;
}

.g410-cro__text li {
    margin: 4px 0;
}

.g410-cro__after-text {
    margin: 0;
    color: var(--g410-text);
    line-height: 1.5;
}

.g410-cro__after-text p {
    margin: 0;
}

.g410-cro__after-text ul {
    margin: 0;
    padding-left: 18px;
}

.g410-cro__after-text li {
    margin: 4px 0;
}

.editor-styles-wrapper .g410-cro__body > .wp-block-group,
.editor-styles-wrapper .g410-cro__body > .wp-block-columns {
    padding: 6px 8px;
    border: 1px dashed rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
}

.editor-styles-wrapper .g410-cro__grid > .wp-block-column {
    border-style: dashed;
}
@media (max-width: 820px){
    .g410-cro__inner{ padding: 16px; }
    .g410-cro__grid{ gap: 12px; }
}
.g410-cta{
    border-radius: var(--g410-radius);
    overflow: hidden;
    box-shadow: var(--g410-shadow);
    background: #fff;
    border: 2px solid var(--g410-violet);
    color: var(--g410-text);
}

.g410-cta__bar{ height: 8px; background: var(--g410-violet); }

.g410-cta__inner{
    padding: 18px 16px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.g410-cta__title{ margin: 0 0 6px; font-weight: 900; color: var(--g410-text); font-size: clamp(19px, 2vw, 22px); line-height: 1.22; }
.g410-cta__text{ margin: 0; color: var(--g410-muted); }

.g410-cta__actions .g410-btn{ text-decoration: none !important; }

@media (max-width: 780px){
    .g410-cta__inner{ flex-direction: column; align-items: flex-start; }
}
.g410-cta-btn{
    display: flex;
    justify-content: center;
    padding: 8px 0;
    margin: 20px 0;
}

.wp-block-g410-logos{
    display: grid;
    grid-template-columns: repeat(var(--g410-logos-columns, auto-fit), minmax(140px, 220px));
    gap: 24px 32px;
    align-items: center;
    justify-items: center;
    justify-content: center;
    margin-bottom: 1.6em;
}
.wp-block-g410-logos .g410-logos__actions{
    grid-column: 1 / -1;
    width: 100%;
    display: flex;
    justify-content: center;
}
.wp-block-g410-logos .g410-logos__actions .components-placeholder{
    margin: 0;
    width: auto;
}

.wp-block-g410-logos .wp-block-image,
.wp-block-g410-logos figure{
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.wp-block-g410-logos img{
    display: block;
    max-height: 72px;
    max-width: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
}

@media (max-width: 600px){
    .wp-block-g410-logos{
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 16px 20px;
    }
}
