.marketing-landing *,
.marketing-landing *::before,
.marketing-landing *::after {
    box-sizing: border-box;
}
.marketing-landing {
    /* Small secondary text must remain readable on the warm light surfaces. */
    --text-muted: #625d55;
    width: 100%;
    overflow-x: clip;
    margin: 0;
    padding: 0;
}
.marketing-landing {
    font-family: 'Inter', sans-serif;
    background: #faf8f5;
    color: #111;
    -webkit-font-smoothing: antialiased;
}
.marketing-landing nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    height: 62px;
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid #f0ede8;
}
.marketing-landing .hero {
    position: relative;
    width: 100%;
    min-height: 94vh;
    margin-top: -62px;
    padding: 106px 40px 70px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: #0a0a0a;
}
.marketing-landing .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    animation: heroKenBurns 24s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
    0% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1.1);
    }
}
.marketing-landing .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(10, 22, 18, 0.7) 0%,
            rgba(10, 22, 18, 0.48) 35%,
            rgba(10, 22, 18, 0.2) 70%,
            rgba(10, 22, 18, 0.08) 100%
        ),
        linear-gradient(
            180deg,
            rgba(10, 22, 18, 0.34) 0%,
            rgba(10, 22, 18, 0.06) 40%,
            rgba(10, 22, 18, 0.06) 70%,
            rgba(10, 22, 18, 0.4) 100%
        ),
        rgba(10, 22, 18, 0.06);
    pointer-events: none;
}
.marketing-landing .hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}
.marketing-landing .hero-text {
    max-width: 620px;
    text-align: left;
}

.marketing-landing h1 {
    font-family: 'Newsreader', Georgia, serif;
    font-weight: 400;
    font-size: clamp(44px, 6vw, 84px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: #fff;
    margin-bottom: 24px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.marketing-landing .hero-sub {
    font-size: 19px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.55;
    max-width: 480px;
    margin: 0 0 36px;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}
.marketing-landing .hero-sub strong {
    color: #fff;
    font-weight: 500;
}

.marketing-landing .hero-ctas {
    display: flex;
    align-items: center;
    gap: 12px;
}
.marketing-landing .btn-primary {
    font-size: 14.5px;
    font-weight: 500;
    color: #111;
    background: #c8f026;
    border: none;
    border-radius: 100px;
    padding: 14px 30px;
    text-decoration: none;
    cursor: pointer;
    transition:
        background 0.15s,
        transform 0.15s;
    box-shadow: 0 8px 32px rgba(200, 240, 38, 0.25);
}
.marketing-landing .btn-primary:hover {
    background: #b8e010;
    transform: translateY(-1px);
}
.marketing-landing .btn-outline {
    font-size: 14.5px;
    font-weight: 500;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 100px;
    padding: 13px 28px;
    text-decoration: none;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition:
        background 0.15s,
        border-color 0.15s;
}
.marketing-landing .btn-outline:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.55);
}

.marketing-landing .hero-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 36px;
}
.marketing-landing .hero-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.01em;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}
.marketing-landing .hero-badge svg {
    width: 15px;
    height: 15px;
    stroke: rgba(255, 255, 255, 0.6);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
@keyframes svbr {
    0%,
    100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(0.3);
    }
}
@keyframes lp {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.25;
    }
}
@keyframes wav {
    0%,
    100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(0.4);
    }
}
@keyframes bk {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
@media (max-width: 960px) {
    .marketing-landing nav {
        padding: 0 18px;
    }
    .marketing-landing .hero {
        padding: 88px 22px 52px;
        min-height: 88vh;
    }
    .marketing-landing .hero-text {
        text-align: left;
        max-width: 100%;
    }
    .marketing-landing .hero-sub {
        margin: 0 0 28px;
    }
    .marketing-landing .hero-ctas {
        justify-content: flex-start;
    }
    .marketing-landing .hero-badges {
        justify-content: flex-start;
        gap: 18px;
    }
}
@media (max-width: 640px) {
    .marketing-landing .hero {
        padding: 79px 20px 44px;
    }
    .marketing-landing h1 {
        font-size: 44px;
        letter-spacing: -0.03em;
    }
    .marketing-landing .hero-sub {
        font-size: 16.5px;
    }
    .marketing-landing .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }
    .marketing-landing .btn-primary,
    .marketing-landing .btn-outline {
        width: 100%;
        text-align: center;
    }
    .marketing-landing .hero::before {
        background: linear-gradient(
            180deg,
            rgba(10, 22, 18, 0.62) 0%,
            rgba(10, 22, 18, 0.46) 45%,
            rgba(10, 22, 18, 0.64) 100%
        );
    }
}
@media (max-width: 768px) {
    .marketing-landing .final-cta-section {
        padding: 24px 12px 32px;
    }
    .marketing-landing .final-cta-wrap {
        padding: 64px 24px;
        border-radius: 18px;
    }
    .marketing-landing .hero-badges {
        flex-wrap: wrap;
        gap: 10px;
    }
}
@media (max-width: 480px) {
    .marketing-landing h1 {
        font-size: 40px;
    }
}
@media (max-width: 768px) {
    .marketing-landing .hero {
        padding: 79px 16px 44px;
    }
}
.marketing-landing .sec-anim-wrap {
    position: relative;
    overflow: hidden;
    background: #faf8f5;
    display: flex;
    flex-direction: column;
}
.marketing-landing .sec-anim-wrap canvas {
    width: 100%;
    flex: 1;
    display: block;
    position: relative;
    z-index: 2;
    min-height: 260px;
}
.marketing-landing .sec-anim-glow {
    position: absolute;
    inset: 10%;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(200, 240, 38, 0.22) 0%,
        transparent 60%
    );
    z-index: 1;
    pointer-events: none;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.8s ease;
}
.marketing-landing .sec-anim-wrap.glow-active .sec-anim-glow {
    opacity: 1;
}
.marketing-landing .sec-anim-phase-label {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    font-family: 'Newsreader', Georgia, serif;
    font-style: italic;
    font-size: 13px;
    color: #16332a;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid rgba(22, 51, 42, 0.1);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
    opacity: 0;
    letter-spacing: 0.01em;
    white-space: nowrap;
}
.marketing-landing .sec-anim-phase-label.visible {
    opacity: 1;
}
.marketing-landing .sec-anim-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px 20px;
    gap: 6px;
    position: relative;
    z-index: 3;
}
.marketing-landing .sec-anim-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    transition: opacity 0.4s ease;
    opacity: 0.3;
}
.marketing-landing .sec-anim-step.active {
    opacity: 1;
}
.marketing-landing .sec-anim-step.past {
    opacity: 0.55;
}
.marketing-landing .sec-anim-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d0cdc6;
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}
.marketing-landing .sec-anim-step.active .sec-anim-dot {
    background: #c8f026;
    box-shadow: 0 0 0 4px rgba(200, 240, 38, 0.25);
    transform: scale(1.3);
}
.marketing-landing .sec-anim-step.past .sec-anim-dot {
    background: #16332a;
}
.marketing-landing .sec-anim-step-label {
    font-size: 11px;
    font-weight: 500;
    color: #666;
    letter-spacing: 0.02em;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
}
.marketing-landing .sec-anim-step.active .sec-anim-step-label {
    color: #16332a;
    font-weight: 600;
}

@media (max-width: 768px) {
    .marketing-landing .sec-anim-timeline {
        padding: 12px 14px 16px;
        gap: 4px;
    }
    .marketing-landing .sec-anim-step-label {
        font-size: 11px;
    }
    .marketing-landing .sec-anim-phase-label {
        font-size: 11px;
        padding: 4px 10px;
    }
}
/* Stable profession identities keep the crop independent of fingerprinted asset
   URLs and apply it to the poster before the video is loaded on interaction. */
.marketing-landing .weda-video[data-profession='psychologues'] {
    object-position: center 20% !important;
    transform: scale(1.22) translateY(9%) !important;
    transform-origin: center center;
}
.marketing-landing .weda-video[data-profession='neuropsychologues'] {
    object-position: center 30% !important;
    transform: scale(1.28) translateY(-2%) !important;
    transform-origin: center center;
}
.marketing-landing .weda-video[data-profession='psychiatres'] {
    object-position: center 18% !important;
    transform: scale(1.36) translateY(8%) !important;
    transform-origin: center center;
}
.marketing-landing .weda-video[data-profession='therapeutes'] {
    object-position: center 28% !important;
    transform: scale(1.2) translateY(-6%) !important;
    transform-origin: center center;
}
.marketing-landing .weda-video[data-profession='psychomotriciens'] {
    object-position: center 16% !important;
}
.marketing-landing .weda-video[data-profession='kinesitherapeutes'] {
    object-position: center 14% !important;
}
.marketing-landing .weda-video[data-profession='osteopathes'] {
    object-position: center 26% !important;
}
.marketing-landing .weda-video[data-profession='orthophonistes'] {
    object-position: center 22% !important;
}
.marketing-landing .weda-video[data-profession='ergotherapeutes'] {
    object-position: center 44% !important;
    transform: scale(1.2) translateY(-11%) !important;
    transform-origin: center center;
}
.marketing-landing .weda-video[data-profession='dieteticiens'] {
    object-position: center 20% !important;
}
.marketing-landing .psec {
    --ink: #1c1100;
    --ink-soft: #5c5750;
    --green: #16332a;
    --lime: #c8f026;
    --paper: #fff;
    --cream: #faf8f5;
    --line: #ece7df;
    position: relative;
    text-align: center;
    padding: 64px 24px 32px;
    background: var(--cream);
    overflow: hidden;
}
.marketing-landing .ps-inner {
    position: relative;
    z-index: 2;
    max-width: 1220px;
    margin: 0 auto;
}

.marketing-landing .ps-kick {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--green);
    opacity: 0.72;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.marketing-landing .ps-title {
    font-family: 'Newsreader', Georgia, serif;
    font-weight: 400;
    font-size: clamp(32px, 4.2vw, 54px);
    line-height: 1.07;
    letter-spacing: -0.03em;
    color: var(--ink);
    max-width: 720px;
    margin: 0 auto 58px;
}
.marketing-landing .ps-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--green);
}
.marketing-landing .showcase {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}
.marketing-landing .sc-photo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 28px;
    background-image:
        linear-gradient(rgba(18, 44, 34, 0.24), rgba(18, 44, 34, 0.24)),
        url("../landing/modes-bg.df4e23aa1dba.jpg");
    background-size: cover;
    background-position: center;
    box-shadow:
        0 22px 60px -40px rgba(20, 50, 40, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}
.marketing-landing .sc-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: linear-gradient(
        180deg,
        rgba(20, 40, 30, 0.05),
        transparent 28%,
        transparent 72%,
        rgba(20, 40, 30, 0.07)
    );
    pointer-events: none;
}
.marketing-landing .ncw {
    position: relative;
    z-index: 2;
    padding: 38px 60px 0;
}
.marketing-landing .nc-stage {
    position: relative;
    max-width: 760px;
    height: 595px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}
.marketing-landing .scn {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(10px) scale(0.988);
    transition:
        opacity 0.55s ease,
        transform 0.6s cubic-bezier(0.22, 0.8, 0.3, 1);
    pointer-events: none;
}
.marketing-landing .scn.on {
    opacity: 1;
    transform: none;
}
.marketing-landing .scn-modes {
    justify-content: center;
}
.marketing-landing .scn-conv {
    transform: translateY(-14px) scale(0.985);
}
.marketing-landing .ncw:not(.js) .scn-note {
    opacity: 1;
    transform: none;
}
.marketing-landing .ncw:not(.js) .scn-modes,
.marketing-landing .ncw:not(.js) .scn-conv {
    display: none;
}
.marketing-landing .nc-bar {
    position: relative;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green);
    border-radius: 13px;
    padding: 7px 8px 7px 14px;
    box-shadow: 0 18px 40px -16px rgba(10, 30, 22, 0.75);
}
.marketing-landing .nc-bt {
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    margin-right: 6px;
}
.marketing-landing .nc-bar svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: var(--lime);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}
.marketing-landing .nc-bsep {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.16);
    margin: 0 4px;
}
.marketing-landing .nc-bb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.86);
    padding: 6px 10px;
    border-radius: 8px;
}
.marketing-landing .nc-bb.on {
    background: var(--lime);
    color: var(--green);
}
.marketing-landing .nc-bb.on svg {
    stroke: var(--green);
}
.marketing-landing .scn-note {
    justify-content: flex-start;
    padding-top: 0;
}
@media (max-width: 860px) {
    .marketing-landing .scn-note {
        padding-top: 76px;
    }
}
.marketing-landing .ncw.js .scn-note {
    opacity: 1;
    transform: translateY(102%);
    transition: transform 0.78s cubic-bezier(0.22, 0.92, 0.26, 1);
}
.marketing-landing .ncw.js .scn-note.on {
    transform: translateY(0);
}
.marketing-landing .scn-conv {
    z-index: 1;
}
.marketing-landing .scn-note {
    z-index: 2;
}
.marketing-landing .nc-doc {
    position: relative;
    width: 86%;
    max-width: 660px;
    margin: -22px auto 0;
    background: var(--paper);
    border-radius: 14px 14px 0 0;
    text-align: left;
    padding: 40px 46px 0;
    height: 800px;
    overflow: hidden;
    box-shadow:
        0 0 80px -26px rgba(15, 45, 35, 0.44),
        0 0 0 1px rgba(255, 255, 255, 0.55);
}

.marketing-landing .nc-sec {
    margin: 0;
}
.marketing-landing .nc-doc h3 {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--ink);
    margin: 0 0 7px;
}
.marketing-landing .nc-doc p {
    font-size: 14.5px;
    line-height: 1.72;
    color: #3f3a33;
    margin: 0 0 22px;
}
.marketing-landing .nc-doc ul {
    margin: 0;
    padding-left: 19px;
}
.marketing-landing .nc-doc li {
    font-size: 14.5px;
    line-height: 1.72;
    color: #3f3a33;
    margin-bottom: 4px;
}
.marketing-landing .nc-doc mark {
    background: rgba(200, 240, 38, 0.3);
    padding: 1px 5px;
    border-radius: 4px;
    color: #2f4b40;
}
.marketing-landing .ncw.js .nc-sec {
    opacity: 0;
    transform: translateY(9px);
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}
.marketing-landing .ncw.js .nc-sec.in {
    opacity: 1;
    transform: none;
}
.marketing-landing .mb-t {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 20px;
    color: #fff;
    margin: 0 0 26px;
    padding: 11px 24px;
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 16px 36px -16px rgba(10, 30, 22, 0.7);
}
.marketing-landing .mbtns {
    display: flex;
    gap: 26px;
    position: relative;
}
.marketing-landing .mbtn {
    width: 238px;
    padding: 26px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    text-align: center;
    position: relative;
    box-shadow:
        0 20px 46px -20px rgba(10, 30, 22, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.6);
    transition:
        background 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}
.marketing-landing .mbtn .mb-ic {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #f2efe8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 13px;
    transition: background 0.35s ease;
}
.marketing-landing .mbtn .mb-ic svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: var(--green);
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.35s ease;
}
.marketing-landing .mbtn b {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 5px;
    transition: color 0.35s ease;
}
.marketing-landing .mbtn span {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.35s ease;
}
.marketing-landing .mbtn.press {
    transform: scale(0.965);
}
.marketing-landing .mbtn.pick {
    background: var(--green);
    box-shadow:
        0 26px 54px -20px rgba(10, 30, 22, 0.8),
        0 0 0 1px rgba(200, 240, 38, 0.35);
}
.marketing-landing .mbtn.pick .mb-ic {
    background: rgba(200, 240, 38, 0.18);
}
.marketing-landing .mbtn.pick .mb-ic svg {
    stroke: var(--lime);
}
.marketing-landing .mbtn.pick b {
    color: #fff;
}
.marketing-landing .mbtn.pick span {
    color: rgba(255, 255, 255, 0.6);
}
.marketing-landing .mbtn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 14px;
    margin: -7px 0 0 -7px;
    border-radius: 50%;
    background: rgba(200, 240, 38, 0.55);
    opacity: 0;
    pointer-events: none;
}
.marketing-landing .mbtn.press::after {
    animation: mbRing 0.6s ease-out;
}
@keyframes mbRing {
    0% {
        opacity: 0.9;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(11);
    }
}

.marketing-landing .mb-cur {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 19px;
    height: 19px;
    margin: -2px 0 0 -6px;
    opacity: 0;
    transition:
        transform 0.85s cubic-bezier(0.33, 0.9, 0.3, 1),
        opacity 0.35s ease;
    transform: translate(40px, 120px);
}
.marketing-landing .mb-cur svg {
    width: 19px;
    height: 19px;
    fill: #1c1100;
    stroke: #fff;
    stroke-width: 1.4;
    filter: drop-shadow(0 3px 6px rgba(10, 30, 22, 0.5));
}
.marketing-landing .scn-modes.c0 .mb-cur {
    opacity: 1;
    transform: translate(-124px, 26px);
}
.marketing-landing .scn-modes.c0.done .mb-cur {
    opacity: 0;
}
.marketing-landing .cv {
    position: relative;
    width: 100%;
    height: 800px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 18px 18px 0 0;
    padding: 42px 56px 36px;
    text-align: left;
    display: flex;
    flex-direction: column;
    box-shadow:
        0 0 70px -26px rgba(15, 45, 35, 0.38),
        0 0 0 1px rgba(255, 255, 255, 0.5);
}
.marketing-landing .cv-h {
    position: absolute;
    left: 50%;
    top: 44%;
    transform: translate(-50%, -50%);
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    background: var(--green);
    border-radius: 999px;
    padding: 12px 22px;
    white-space: nowrap;
    box-shadow: 0 18px 42px -14px rgba(10, 30, 22, 0.55);
}
.marketing-landing .cv-h .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime);
}
.marketing-landing .ncw.play .scn-conv.on .cv-h .dot {
    animation: cvDot 1.4s ease-in-out infinite;
}
@keyframes cvDot {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.25;
    }
}
.marketing-landing .cvb {
    width: fit-content;
    max-width: 64%;
    padding: 14px 20px;
    border-radius: 19px;
    font-size: 16.5px;
    line-height: 1.5;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}
.marketing-landing .cvb.in {
    opacity: 1;
    transform: none;
}
.marketing-landing .ncw:not(.js) .cvb {
    opacity: 1;
    transform: none;
}
.marketing-landing .cvb-p {
    background: #f3f1ea;
    color: #4a453c;
    border-bottom-left-radius: 7px;
}
.marketing-landing .cvb-a {
    background: rgba(22, 51, 42, 0.07);
    color: #2b4a3e;
    margin-left: auto;
    border-bottom-right-radius: 7px;
}
.marketing-landing .cv-f {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font-size: 13px;
    color: var(--text-muted);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.marketing-landing .cv-f.in {
    opacity: 1;
}
.marketing-landing .ncw:not(.js) .cv-f {
    opacity: 1;
}
.marketing-landing .nc-wv {
    display: inline-flex;
    align-items: flex-end;
    gap: 2.5px;
    height: 15px;
    flex-shrink: 0;
}
.marketing-landing .nc-wv i {
    width: 2.5px;
    border-radius: 2px;
    background: var(--green);
    opacity: 0.5;
    height: 40%;
}
.marketing-landing .ncw.play .scn-conv.on .cv-f.in .nc-wv i {
    animation: ncWv 0.9s ease-in-out infinite;
}
.marketing-landing .nc-wv i:nth-child(2) {
    animation-delay: 0.12s;
}
.marketing-landing .nc-wv i:nth-child(3) {
    animation-delay: 0.24s;
}
.marketing-landing .nc-wv i:nth-child(4) {
    animation-delay: 0.36s;
}
.marketing-landing .nc-wv i:nth-child(5) {
    animation-delay: 0.48s;
}
@keyframes ncWv {
    0%,
    100% {
        height: 30%;
    }
    50% {
        height: 100%;
    }
}
@keyframes ncCar {
    50% {
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .marketing-landing .ncw.js .nc-sec,
    .marketing-landing .ncw.js .cvb,
    .marketing-landing .ncw.js .cv-f {
        opacity: 1 !important;
        transform: none !important;
    }
    .marketing-landing .nc-wv i,
    .marketing-landing .cv-h .dot {
        animation: none !important;
    }
}

@media (max-width: 860px) {
    .marketing-landing .psec .sc-photo {
        bottom: 0 !important;
    }
    .marketing-landing .cv-f {
        margin-top: 16px;
    }
    .marketing-landing .ncw {
        padding: 18px 8px 0;
    }
    .marketing-landing .nc-stage {
        height: 694px;
        border-radius: 14px 14px 0 0;
    }
    .marketing-landing .nc-doc {
        width: 94%;
        max-width: none;
        padding: 38px 20px 0;
        height: 920px;
        border-radius: 12px 12px 0 0;
        box-shadow:
            0 10px 28px -16px rgba(50, 45, 30, 0.25),
            0 0 0 1px rgba(40, 40, 30, 0.05);
    }
    .marketing-landing .nc-doc p,
    .marketing-landing .nc-doc li {
        font-size: 15px;
        line-height: 1.7;
    }
    .marketing-landing .nc-doc p {
        margin-bottom: 20px;
    }
    .marketing-landing .nc-bar {
        padding: 5px 5px 5px 11px;
        gap: 4px;
    }
    .marketing-landing .nc-bt {
        font-size: 11px;
        margin-right: 3px;
    }
    .marketing-landing .nc-bb {
        font-size: 11px;
        padding: 5px 7px;
        gap: 5px;
    }
    .marketing-landing .nc-bsep {
        margin: 0 2px;
    }
    .marketing-landing .mb-t {
        font-size: 17px;
        margin-bottom: 22px;
        padding: 10px 20px;
    }
    .marketing-landing .scn-modes {
        padding: 0 14px;
    }
    .marketing-landing .mbtns {
        flex-direction: column;
        gap: 14px;
        width: 100%;
    }
    .marketing-landing .mbtn {
        width: 100%;
        padding: 20px 22px;
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
        border-radius: 16px;
    }
    .marketing-landing .mbtn .mb-ic {
        margin: 0;
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    .marketing-landing .mbtn b {
        font-size: 16.5px;
        margin-bottom: 3px;
    }
    .marketing-landing .mbtn span {
        font-size: 13.5px;
    }
    .marketing-landing .scn-modes.c0 .mb-cur {
        transform: translate(96px, -52px);
    }
    .marketing-landing .cv {
        height: auto;
        max-width: none;
        padding: 54px 18px 50px;
        border-radius: 16px;
        box-shadow:
            0 10px 28px -16px rgba(50, 45, 30, 0.25),
            0 0 0 1px rgba(40, 40, 30, 0.05);
    }
    .marketing-landing .scn-conv {
        justify-content: center;
        padding: 0 6px;
    }
    .marketing-landing .cv-f {
        margin-top: 20px;
    }
    .marketing-landing .cvb {
        font-size: 14.5px;
        max-width: 88%;
        padding: 12px 16px;
        margin-bottom: 13px;
    }
    .marketing-landing .cv-h {
        font-size: 10px;
        padding: 10px 16px;
        top: 42%;
    }
}
@keyframes pl {
    0% {
        transform: scale(0.6);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}
@keyframes wv {
    0%,
    100% {
        transform: scaleY(0.5);
    }
    50% {
        transform: scaleY(1);
    }
}
@keyframes eq {
    0%,
    100% {
        transform: scaleY(0.5);
    }
    50% {
        transform: scaleY(1);
    }
}

@media (max-width: 820px) {
    .marketing-landing .psec {
        padding: 56px 12px 34px;
    }
    .marketing-landing .showcase {
        max-width: none;
    }
    .marketing-landing .sc-photo {
        display: none;
    }
}
@media (prefers-reduced-motion: reduce) {
    .marketing-landing * {
        animation: none !important;
    }
}
.marketing-landing .ms {
    --ink: #1c1100;
    --ink-soft: #5c5750;
    --green: #16332a;
    --lime: #c8f026;
    --paper: #fff;
    --cream: #faf8f5;
    --line: #ece7df;
    --soft: #f1ede6;
    position: relative;
    text-align: center;
    padding: 48px 24px 62px;
    background: var(--cream);
    overflow: hidden;
}
.marketing-landing .ms-in {
    position: relative;
    z-index: 2;
    max-width: 1220px;
    margin: 0 auto;
}
.marketing-landing .ms-kick {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--green);
    opacity: 0.72;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.marketing-landing .ms-title {
    font-family: 'Newsreader', Georgia, serif;
    font-weight: 400;
    font-size: clamp(30px, 3.8vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--ink);
    max-width: 640px;
    margin: 0 auto 16px;
}
.marketing-landing .ms-sub {
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 560px;
    margin: 0 auto 58px;
}
.marketing-landing .sh {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
}
.marketing-landing .sh-photo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 56px;
    border-radius: 28px;
    background-image:
        linear-gradient(rgba(20, 46, 38, 0.3), rgba(20, 46, 38, 0.3)),
        url("../landing/bg-therapeutes.3a5f8d847997.jpg");
    background-size: cover;
    background-position: center;
    box-shadow:
        0 36px 90px -34px rgba(28, 70, 55, 0.42),
        inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}
.marketing-landing .sh-in {
    position: relative;
    z-index: 2;
    padding: 66px 84px 0;
}
.marketing-landing .note {
    background: var(--paper);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    text-align: left;
    box-shadow:
        0 2px 6px rgba(25, 55, 45, 0.08),
        0 40px 80px -30px rgba(28, 70, 55, 0.46),
        0 0 0 1px rgba(255, 255, 255, 0.7);
}
.marketing-landing .note-rail {
    width: 54px;
    flex-shrink: 0;
    background: #fcfbf8;
    border-right: 1px solid var(--soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 16px 0;
}
.marketing-landing .note-rail .lg {
    width: 24px;
    height: 24px;
    margin-bottom: 6px;
}
.marketing-landing .note-rail .lg svg {
    width: 24px;
    height: 24px;
    fill: var(--green);
}
.marketing-landing .ri {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.marketing-landing .ri svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: #9a948b;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.marketing-landing .ri.on {
    background: #efe9e0;
}
.marketing-landing .ri.on svg {
    stroke: var(--green);
}
.marketing-landing .note-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.marketing-landing .note-h {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 15px 20px;
    border-bottom: 1px solid var(--soft);
}
.marketing-landing .note-crumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: #6a655e;
    min-width: 0;
}
.marketing-landing .note-crumb .av {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: var(--green);
    color: var(--lime);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9.5px;
    font-weight: 700;
    flex-shrink: 0;
}
.marketing-landing .note-crumb b {
    font-family: 'Newsreader', Georgia, serif;
    font-weight: 500;
    color: var(--ink);
    font-size: 15px;
}
.marketing-landing .note-crumb svg {
    width: 14px;
    height: 14px;
    stroke: #b3aea6;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}
.marketing-landing .note-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 600;
    color: #fff;
    background: var(--green);
    border-radius: 9px;
    padding: 8px 13px;
    white-space: nowrap;
    flex-shrink: 0;
}
.marketing-landing .note-btn svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: var(--lime);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.marketing-landing .note-b {
    padding: 26px 28px 26px;
    flex: 1;
}
.marketing-landing .msec {
    margin-bottom: 20px;
}
.marketing-landing .msec-tj {
    margin-bottom: 14px;
}
.marketing-landing .msum {
    padding-bottom: 6px;
    border-bottom: 1px solid #f2eee7;
    margin-bottom: 20px;
}
.marketing-landing .msum-p {
    font-size: 15px;
    line-height: 1.65;
    color: #3f3a33;
    max-width: 68%;
    margin: 0 0 13px;
}
.marketing-landing .msum-l {
    display: flex;
    gap: 11px;
    font-size: 14.5px;
    line-height: 1.55;
    color: #4a453e;
    margin-bottom: 7px;
    max-width: 68%;
}
.marketing-landing .msum-l::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #c7c1b6;
    margin-top: 9px;
    flex-shrink: 0;
}
.marketing-landing .msec-t {
    font-size: 13px;
    font-weight: 700;
    color: #5c574f;
    margin-bottom: 13px;
}
.marketing-landing .mtj {
    max-width: 74%;
}
.marketing-landing .mtj-hd {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 8px;
}
.marketing-landing .mtj-hd > span:first-child {
    font-size: 12.5px;
    color: var(--text-muted);
}
.marketing-landing .mtj-leg {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    color: var(--text-muted);
}
.marketing-landing .mtj-leg i {
    width: 14px;
    height: 2px;
    border-radius: 2px;
    background: #16332a;
    display: inline-block;
}
.marketing-landing .mtj-plot {
    position: relative;
    height: 150px;
    overflow: visible;
}
.marketing-landing .mtj-svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 150px;
    display: block;
}
.marketing-landing .mtj-pt {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 9px;
    height: 9px;
    margin: -4.5px 0 0 -4.5px;
    border-radius: 50%;
    background: #16332a;
    box-shadow: 0 0 0 3px var(--paper);
}
.marketing-landing .mtj-pt-end {
    width: 11px;
    height: 11px;
    margin: -5.5px 0 0 -5.5px;
    background: #16332a;
    box-shadow:
        0 0 0 3px var(--paper),
        0 0 0 4.5px rgba(22, 51, 42, 0.2);
}
.marketing-landing .mtj-lab {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1.3;
    white-space: nowrap;
}
.marketing-landing .mtj-lab b {
    font-size: 12px;
    font-weight: 700;
    color: #1c1100;
}
.marketing-landing .mtj-lab i {
    font-style: normal;
    color: #cfc9bf;
    font-size: 11px;
}
.marketing-landing .mtj-lab em {
    font-style: normal;
    font-size: 12.5px;
    color: #6f6a62;
}
.marketing-landing .mtj-l1 {
    flex-direction: row;
    align-items: baseline;
    gap: 6px;
    line-height: 1.35;
    left: var(--x);
    top: calc(var(--y) - 10px);
    transform: translate(-5px, -100%);
}
.marketing-landing .mtj-l2 {
    left: var(--x);
    top: calc(var(--y) - 13px);
    transform: translate(-50%, -100%);
    text-align: center;
}
.marketing-landing .mtj-l3 {
    right: 0;
    top: calc(var(--y) + 14px);
    text-align: right;
    align-items: flex-end;
}
.marketing-landing .mtj-cap {
    margin-top: 15px;
    font-size: 15px;
    color: #4a453e;
    line-height: 1.5;
}
.marketing-landing .mtj-cap b {
    color: #1c1100;
}
.marketing-landing .mobj {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #e6e0d6;
    border-radius: 12px;
    padding: 14px 17px;
    margin-top: 6px;
    max-width: 66%;
}
.marketing-landing .mobj-l {
    flex: 1;
    min-width: 0;
}
.marketing-landing .mobj-t {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 3px;
}
.marketing-landing .mobj-x {
    font-size: 14.5px;
    color: #1c1100;
    font-weight: 600;
}
.marketing-landing .mobj-b {
    flex-shrink: 0;
    font:
        600 11.5px/1 'Inter',
        sans-serif;
    color: var(--text-muted);
    white-space: nowrap;
}
.marketing-landing .li {
    display: flex;
    gap: 11px;
    font-size: 15px;
    line-height: 1.6;
    color: #3f3a33;
    margin-bottom: 11px;
    max-width: 66%;
}
.marketing-landing .li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #c7c1b6;
    margin-top: 8px;
    flex-shrink: 0;
}
.marketing-landing .li b {
    color: #1f1b15;
    font-weight: 600;
}
.marketing-landing mark {
    background: rgba(200, 240, 38, 0.28);
    padding: 1px 5px;
    border-radius: 4px;
    color: #2f4b40;
}
.marketing-landing .pop {
    position: absolute;
    z-index: 5;
    background: var(--paper);
    border-radius: 14px;
    padding: 14px 15px;
    width: 290px;
    box-shadow:
        0 26px 54px -14px rgba(28, 70, 55, 0.5),
        0 0 0 1px rgba(25, 55, 45, 0.05);
}
.marketing-landing .pop-a {
    top: 250px;
    right: -46px;
}
.marketing-landing .pop-b {
    top: 470px;
    right: -46px;
}
.marketing-landing .pop-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 9px;
}
.marketing-landing .pop-tag svg {
    width: 12px;
    height: 12px;
}
.marketing-landing .tag-t {
    color: var(--green);
    background: rgba(22, 51, 42, 0.09);
}
.marketing-landing .tag-t svg {
    fill: none;
    stroke: var(--green);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.marketing-landing .tag-i {
    color: var(--green);
    background: rgba(200, 240, 38, 0.34);
}
.marketing-landing .tag-i svg {
    fill: none;
    stroke: var(--green);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.marketing-landing .pop-x {
    font-size: 13.5px;
    line-height: 1.5;
    color: #2c2620;
    font-weight: 500;
}
.marketing-landing .pop-ref {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
    font-weight: 600;
    color: #9a948b;
    margin-top: 9px;
}
.marketing-landing .pop-ref svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: #9a948b;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 860px) {
    .marketing-landing .ms {
        padding: 52px 16px 34px;
    }
    .marketing-landing .sh-in {
        padding: 16px;
    }
    .marketing-landing .note-rail {
        display: none;
    }
    .marketing-landing .li {
        max-width: none;
    }
    .marketing-landing .mobj {
        max-width: none;
    }
    .marketing-landing .mtj {
        max-width: none;
    }
    .marketing-landing .mtj-plot {
        height: 134px;
    }
    .marketing-landing .mtj-svg {
        height: 134px;
    }
    .marketing-landing .mtj-hd > span:first-child,
    .marketing-landing .mtj-leg {
        font-size: 11.5px;
    }
    .marketing-landing .mtj-l2 {
        display: none;
    }
    .marketing-landing .mtj-lab b {
        font-size: 11.5px;
    }
    .marketing-landing .mtj-lab em {
        font-size: 11.5px;
    }
    .marketing-landing .mtj-cap {
        font-size: 14px;
        margin-top: 16px;
    }
    .marketing-landing .mobj {
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
    }
    .marketing-landing .mobj-b {
        align-self: flex-start;
    }
    .marketing-landing .note-crumb {
        font-size: 12.5px;
    }
    .marketing-landing .note-crumb b {
        font-size: 14px;
    }
    .marketing-landing .msum-p,
    .marketing-landing .msum-l {
        max-width: none;
    }
    .marketing-landing .ms .note {
        box-shadow:
            0 8px 24px -14px rgba(50, 45, 30, 0.22),
            0 0 0 1px rgba(40, 40, 30, 0.05);
    }
    .marketing-landing .ms .sh-photo {
        display: none;
    }
    .marketing-landing .pop {
        position: static;
        width: auto;
        margin: 18px 16px 0;
        padding-bottom: 16px;
        box-shadow:
            0 8px 22px -12px rgba(50, 45, 30, 0.18),
            0 0 0 1px rgba(40, 40, 30, 0.06);
    }
    .marketing-landing .pop-a,
    .marketing-landing .pop-b {
        right: auto;
        top: auto;
    }
}
.marketing-landing .rp {
    --ink: #1c1100;
    --ink-soft: #5c5750;
    --green: #16332a;
    --lime: #c8f026;
    --paper: #fff;
    --cream: #faf8f5;
    --line: #ece7df;
    --soft: #f1ede6;
    position: relative;
    text-align: center;
    padding: 58px 24px 56px;
    background: var(--cream);
    overflow: hidden;
}
.marketing-landing .rp-in {
    position: relative;
    z-index: 2;
    max-width: 1220px;
    margin: 0 auto;
}
.marketing-landing .rp-kick {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--green);
    opacity: 0.72;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.marketing-landing .rp-title {
    font-family: 'Newsreader', Georgia, serif;
    font-weight: 400;
    font-size: clamp(30px, 3.8vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--ink);
    max-width: 660px;
    margin: 0 auto 16px;
}
.marketing-landing .rp-title s {
    color: var(--text-muted);
    text-decoration-thickness: 2px;
}
.marketing-landing .rp-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--green);
}
.marketing-landing .rp-sub {
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 580px;
    margin: 0 auto 44px;
}
.marketing-landing .rp .sh {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
}
.marketing-landing .rp .sh-photo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 56px;
    border-radius: 28px;
    background-image: url("../landing/rapports-bg.9f4e3a44c564.jpg");
    background-size: cover;
    background-position: center;
    box-shadow:
        0 36px 90px -34px rgba(120, 90, 20, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}
.marketing-landing .rp .sh-in {
    position: relative;
    z-index: 2;
    padding: 40px 84px 0;
}
.marketing-landing .rp .doc {
    background: var(--paper);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    text-align: left;
    box-shadow:
        0 2px 6px rgba(90, 70, 20, 0.08),
        0 40px 80px -30px rgba(120, 90, 20, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.7);
}
.marketing-landing .rp .rail {
    width: 54px;
    flex-shrink: 0;
    background: #fcfbf8;
    border-right: 1px solid var(--soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 16px 0;
}
.marketing-landing .rp .rail .lg {
    width: 24px;
    height: 24px;
    margin-bottom: 6px;
}
.marketing-landing .rp .rail .lg svg {
    width: 24px;
    height: 24px;
    fill: var(--green);
}
.marketing-landing .rp .ri {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.marketing-landing .rp .ri svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: #9a948b;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.marketing-landing .rp .ri.on {
    background: #efe9e0;
}
.marketing-landing .rp .ri.on svg {
    stroke: var(--green);
}
.marketing-landing .rp .doc-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.marketing-landing .rp .cols {
    display: grid;
    grid-template-columns: 262px 1fr;
    flex: 1;
}
.marketing-landing .rp .mods {
    border-right: 1px solid var(--soft);
    padding: 18px 14px;
    background: #fcfbf8;
}
.marketing-landing .rp .mods-t {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #c2bcb2;
    margin: 2px 8px 12px;
}
.marketing-landing .rp .mod {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 12px;
    border-radius: 11px;
    cursor: pointer;
    margin-bottom: 3px;
    transition: background 0.15s;
}
.marketing-landing .rp .mod:hover {
    background: #f4f0e9;
}
.marketing-landing .rp .mod.on {
    background: #fff;
    box-shadow:
        0 1px 3px rgba(90, 70, 20, 0.08),
        inset 0 0 0 1px rgba(22, 51, 42, 0.12);
}
.marketing-landing .rp .mod-ic {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #eef2ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.marketing-landing .rp .mod-ic svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: #16332a;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.marketing-landing .rp .mod.on .mod-ic {
    background: var(--green);
}
.marketing-landing .rp .mod.on .mod-ic svg {
    stroke: var(--lime);
}
.marketing-landing .rp .mod-n {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #3a352e;
    line-height: 1.25;
}
.marketing-landing .rp .mod-p {
    display: block;
    font-size: 11px;
    color: #a49e95;
    margin-top: 2px;
}
.marketing-landing .rp .docv {
    position: relative;
    padding: 20px 24px 22px;
    display: flex;
    flex-direction: column;
    min-height: 476px;
}
@media (max-width: 860px) {
    .marketing-landing .rp .pg-sig {
        margin-bottom: 18px !important;
        margin-top: 6px !important;
    }
    .marketing-landing .rp .page-foot {
        padding: 5px 0 7px !important;
    }
    .marketing-landing .rp .docv {
        padding: 14px 10px 16px;
    }
    .marketing-landing .rp .sh-in {
        padding: 12px !important;
    }
    .marketing-landing .ms .sh-in {
        padding: 12px !important;
    }
    .marketing-landing .ms .note-b {
        padding: 18px 18px 18px;
    }
    .marketing-landing .ms .msum {
        margin-bottom: 16px;
        padding-bottom: 2px;
    }
    .marketing-landing .ms .msum-p {
        font-size: 14.5px;
        line-height: 1.55;
        margin-bottom: 10px;
    }
    .marketing-landing .ms .msum-l {
        font-size: 14px;
        line-height: 1.45;
        margin-bottom: 5px;
    }
    .marketing-landing .ms .msec {
        margin-bottom: 14px;
    }
    .marketing-landing .ms .li {
        margin-bottom: 8px;
    }
    .marketing-landing .rp .docv-foot {
        margin-top: 2px;
    }
}
.marketing-landing .rp .rp-cur {
    position: absolute;
    left: 0;
    top: 0;
    width: 19px;
    height: 19px;
    z-index: 9;
    opacity: 0;
    pointer-events: none;
    transition:
        transform 0.85s cubic-bezier(0.33, 0.9, 0.3, 1),
        opacity 0.32s ease;
}
.marketing-landing .rp .rp-cur.go {
    opacity: 1;
}
.marketing-landing .rp .rp-cur svg {
    width: 19px;
    height: 19px;
    fill: #1c1100;
    stroke: #fff;
    stroke-width: 1.4;
    filter: drop-shadow(0 3px 6px rgba(60, 50, 15, 0.45));
}
.marketing-landing .rp #rpExport {
    position: relative;
    overflow: visible;
}
.marketing-landing .rp #rpExport::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 14px;
    margin: -7px 0 0 -7px;
    border-radius: 50%;
    background: rgba(200, 240, 38, 0.5);
    opacity: 0;
    pointer-events: none;
}
.marketing-landing .rp #rpExport.press::after {
    animation: rpRing 0.62s ease-out;
}
@keyframes rpRing {
    0% {
        opacity: 0.9;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(9);
    }
}
.marketing-landing .rp .docv-h {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.marketing-landing .rp .docv-t {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 18px;
    font-weight: 500;
    color: #111;
    flex: 1;
}
.marketing-landing .rp .badge-p {
    font-size: 11px;
    font-weight: 700;
    color: var(--green);
    background: rgba(200, 240, 38, 0.32);
    padding: 5px 11px;
    border-radius: 100px;
    white-space: nowrap;
}
.marketing-landing .rp .badge-e {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    background: #f4f1ec;
    padding: 5px 10px;
    border-radius: 100px;
}
.marketing-landing .rp .badge-e svg {
    width: 11px;
    height: 11px;
    fill: none;
    stroke: #8b8681;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.marketing-landing .rp .stack {
    position: relative;
    height: 476px;
    margin-bottom: 16px;
    background: #f1eee7;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 3px rgba(60, 50, 20, 0.06);
}
.marketing-landing .rp .stack::before,
.marketing-landing .rp .stack::after {
    content: '';
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 50%;
    width: 404px;
    margin-left: -202px;
    background: #fff;
    border: 1px solid #e6e0d4;
    border-radius: 3px;
    opacity: 0;
}
.marketing-landing .rp .stack.multi::before {
    transform: translate(9px, 9px);
    opacity: 0.45;
}
.marketing-landing .rp .stack.multi::after {
    transform: translate(4.5px, 4.5px);
    opacity: 0.75;
}
.marketing-landing .rp .page {
    position: relative;
    z-index: 2;
    background: #fff;
    border: 1px solid #e6e0d4;
    border-radius: 3px;
    width: 404px;
    height: 444px;
    padding: 24px 34px 0;
    overflow: hidden;
    box-shadow: 0 10px 26px -10px rgba(70, 55, 15, 0.28);
}
.marketing-landing .rp .sc {
    margin-bottom: 7px;
}
.marketing-landing .rp .sc-t {
    font-size: 8.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    color: #16332a;
    opacity: 0.62;
    margin-bottom: 5px;
}
.marketing-landing .rp .sc-p {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 11.5px;
    line-height: 1.55;
    color: #2a251d;
}
.marketing-landing .rp .li {
    display: flex;
    gap: 7px;
    font-family: 'Newsreader', Georgia, serif;
    font-size: 11.5px;
    line-height: 1.5;
    color: #2a251d;
    margin-bottom: 3px;
}
.marketing-landing .rp .li::before {
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #c7c1b6;
    margin-top: 6px;
    flex-shrink: 0;
}
.marketing-landing .rp .pg-lh {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 8px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e8e2d6;
}
.marketing-landing .rp .pg-lh b {
    display: block;
    font-family: 'Newsreader', Georgia, serif;
    font-size: 12.5px;
    font-weight: 600;
    color: #1c1100;
    letter-spacing: 0.01em;
}
.marketing-landing .rp .pg-lh span {
    display: block;
    font-size: 9px;
    color: var(--text-muted);
    margin-top: 2px;
    letter-spacing: 0.02em;
}
.marketing-landing .rp .pg-date {
    font-size: 9px;
    color: var(--text-muted);
    white-space: nowrap;
    text-align: right;
    padding-top: 2px;
}
.marketing-landing .rp .pg-to {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 11px;
    line-height: 1.45;
    color: #4a453c;
    margin-bottom: 9px;
}
.marketing-landing .rp .pg-obj {
    font-size: 9.5px;
    font-weight: 700;
    color: #16332a;
    margin-bottom: 10px;
}
.marketing-landing .rp .pg-sal {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 11.5px;
    color: #2a251d;
    margin-bottom: 9px;
}
.marketing-landing .rp .pg-p {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 11.5px;
    line-height: 1.6;
    color: #2a251d;
    text-align: justify;
    hyphens: auto;
    margin-bottom: 8px;
}
.marketing-landing .rp .pg-close {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 11.5px;
    line-height: 1.6;
    color: #2a251d;
    margin-top: 9px;
}
.marketing-landing .rp .pg-sig {
    margin-top: 9px;
    margin-bottom: 38px;
    text-align: right;
}
@media (max-width: 860px) {
    .marketing-landing .rp .docv {
        min-height: 0;
    }
}
.marketing-landing .rp .pg-sig i {
    display: block;
    width: 78px;
    margin-left: auto;
    height: 17px;
    background: no-repeat center/contain
        url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 26'%3E%3Cpath d='M4 20c8-13 13-16 16-11s-2 13 3 12 9-9 13-14 6 2 11 3 9-6 14-9 12 4 19 2' fill='none' stroke='%232a251d' stroke-width='1.6' stroke-linecap='round' opacity='.55'/%3E%3C/svg%3E");
    opacity: 0.9;
}
.marketing-landing .rp .pg-sig b {
    display: block;
    font-family: 'Newsreader', Georgia, serif;
    font-size: 11px;
    font-weight: 600;
    color: #1c1100;
    margin-top: 3px;
}
.marketing-landing .rp .pg-sig span {
    display: block;
    font-size: 8.5px;
    color: var(--text-muted);
    margin-top: 1px;
}
.marketing-landing .rp .cursor {
    display: inline-block;
    width: 1.5px;
    height: 13px;
    background: var(--green);
    opacity: 0.55;
    vertical-align: -2px;
    margin-left: 1px;
}
@keyframes rpcur {
    50% {
        opacity: 0;
    }
}
.marketing-landing .rp .page-foot {
    position: absolute;
    bottom: 0;
    left: 34px;
    right: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
    color: var(--text-muted);
    border-top: 1px solid var(--soft);
    padding: 6px 0 9px;
    background: #fff;
}
.marketing-landing .rp .docv-foot {
    display: flex;
    gap: 9px;
}
.marketing-landing .rp .fbtn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 600;
    padding: 9px 15px;
    border-radius: 10px;
    cursor: pointer;
}
.marketing-landing .rp .fbtn.pri {
    color: #fff;
    background: var(--green);
}
.marketing-landing .rp .fbtn.pri svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: var(--lime);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.marketing-landing .rp .fbtn.sec {
    color: var(--ink-soft);
    background: #fff;
    border: 1px solid var(--line);
}
.marketing-landing .rp .fbtn.sec svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: #8b8681;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}
@media (max-width: 860px) {
    .marketing-landing .rp {
        padding: 48px 16px 62px;
    }
    .marketing-landing .rp .sh-in {
        padding: 16px;
    }
    .marketing-landing .rp .sh-photo {
        bottom: 0;
    }
    .marketing-landing .rp .rail {
        display: none;
    }
    .marketing-landing .rp .cols {
        grid-template-columns: 1fr;
    }
    .marketing-landing .rp .mods {
        display: none;
    }
    .marketing-landing .rp .docv {
        min-width: 0;
    }
}
.marketing-landing .rp .voice {
    position: absolute;
    z-index: 9;
    bottom: 96px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--green);
    border-radius: 16px;
    padding: 14px 24px 14px 16px;
    max-width: 520px;
    box-shadow:
        0 26px 56px -18px rgba(10, 30, 22, 0.62),
        0 0 0 1px rgba(200, 240, 38, 0.22);
    opacity: 0;
    transform: translate(-50%, 14px) scale(0.96);
    transition:
        opacity 0.4s ease,
        transform 0.5s cubic-bezier(0.22, 0.9, 0.3, 1);
    pointer-events: none;
}
.marketing-landing .rp .voice.show {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
}
.marketing-landing .rp .voice-mic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--lime);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.marketing-landing .rp .voice-mic svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--green);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.marketing-landing .rp .voice-mic::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--lime);
    opacity: 0;
}
.marketing-landing .rp .voice.listening .voice-mic::after {
    animation: rpRipple 1.6s ease-out infinite;
}
.marketing-landing .rp .voice-txt {
    font-size: 14.5px;
    line-height: 1.45;
    color: #fff;
    font-style: italic;
}
.marketing-landing .rp .voice-done {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--lime);
    font-style: normal;
    margin-top: 7px;
    opacity: 0;
    transform: translateY(3px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}
.marketing-landing .rp .voice.done .voice-done {
    opacity: 1;
    transform: translateY(0);
}
.marketing-landing .rp .voice-done svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: var(--lime);
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
@keyframes rpRipple {
    0% {
        opacity: 0.6;
        transform: scale(0.82);
    }
    100% {
        opacity: 0;
        transform: scale(1.25);
    }
}
@media (max-width: 860px) {
    .marketing-landing .rp .voice {
        left: 50%;
        bottom: 74px;
        max-width: 88%;
        padding: 11px 16px 11px 12px;
        gap: 11px;
    }
    .marketing-landing .rp .voice-txt {
        font-size: 13px;
    }
    .marketing-landing .rp .voice-mic {
        width: 34px;
        height: 34px;
    }
}
.marketing-landing .rp .page .sc {
    opacity: 0;
    transform: translateY(7px);
    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}
.marketing-landing .rp .page .sc.in {
    opacity: 1;
    transform: translateY(0);
}
.marketing-landing .rp .page .page-foot {
    opacity: 0;
    transition: opacity 0.4s ease;
}
.marketing-landing .rp .page .page-foot.in {
    opacity: 1;
}
.marketing-landing .rp .sc-edit {
    display: block;
    font-family: 'Newsreader', Georgia, serif;
    font-size: 11.5px;
    line-height: 1.6;
    text-align: justify;
    color: #2a251d;
    margin-top: 6px;
    border-radius: 5px;
    padding: 2px 5px;
    margin-left: -5px;
    background: transparent;
    transition: background 1.4s ease;
}
.marketing-landing .rp .sc-edit.flash {
    background: rgba(200, 240, 38, 0.2);
}
.marketing-landing .rp #rpExport {
    transition:
        box-shadow 0.2s ease,
        filter 0.2s ease;
}
.marketing-landing .rp #rpExport.press {
    filter: brightness(1.08);
    box-shadow: 0 0 0 3px rgba(200, 240, 38, 0.45);
}
.marketing-landing .rp .doc.rp-gather {
    transition:
        transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.55s ease;
    transform: scale(0.955);
    opacity: 0.32;
}
.marketing-landing .rp .flypdf {
    position: absolute;
    z-index: 9;
    left: 50%;
    top: 50%;
    width: 158px;
    transform: translate(-50%, -50%) scale(0.55);
    opacity: 0;
    background: #fff;
    border-radius: 13px;
    padding: 15px 15px 14px;
    text-align: left;
    pointer-events: none;
    box-shadow:
        0 24px 55px -18px rgba(120, 90, 20, 0.55),
        0 0 0 1px rgba(60, 50, 20, 0.07);
}
.marketing-landing .rp .flypdf.in {
    transition:
        transform 0.6s cubic-bezier(0.34, 1.38, 0.5, 1),
        opacity 0.4s ease;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}
.marketing-landing .rp .flypdf.fly {
    transition:
        transform 0.85s cubic-bezier(0.5, 0, 0.75, 0),
        opacity 0.85s ease;
    transform: translate(210%, -260%) scale(0.5) rotate(8deg);
    opacity: 0;
}
.marketing-landing .rp .fp-tab {
    display: inline-block;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.09em;
    color: #fff;
    background: #d0463b;
    padding: 3px 7px;
    border-radius: 5px;
    margin-bottom: 11px;
}
.marketing-landing .rp .fp-prev {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 12px;
}
.marketing-landing .rp .fp-prev i {
    height: 5px;
    border-radius: 3px;
    background: #ece7dd;
    display: block;
}
.marketing-landing .rp .fp-prev i:nth-child(1) {
    width: 82%;
}
.marketing-landing .rp .fp-prev i:nth-child(2) {
    width: 100%;
}
.marketing-landing .rp .fp-prev i:nth-child(3) {
    width: 60%;
}
.marketing-landing .rp .fp-name {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.2;
}
.marketing-landing .rp .fp-sub {
    font-size: 10.5px;
    color: var(--ink-soft);
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.marketing-landing .rp .fp-sub svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: var(--green);
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}
@media (prefers-reduced-motion: reduce) {
    .marketing-landing .rp .page .sc,
    .marketing-landing .rp .page .page-foot {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .marketing-landing .rp .voice {
        transition: none;
    }
}
.marketing-landing .rp .rpc-cot {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
}
.marketing-landing .rp .cot-panel {
    width: 100%;
    max-width: 344px;
    background: var(--paper);
    border: 1px solid var(--soft);
    border-radius: 12px;
    padding: 18px 16px;
    box-shadow: 0 10px 26px -14px rgba(40, 50, 30, 0.28);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.marketing-landing .rp .cot-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: var(--ink-soft);
}
.marketing-landing .rp .cot-lbl {
    width: 104px;
    flex-shrink: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.marketing-landing .rp .cot-track {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: #eceae4;
    overflow: hidden;
}
.marketing-landing .rp .cot-track i {
    display: block;
    height: 100%;
    border-radius: 3px;
    background: var(--green);
}
.marketing-landing .rp .cot-val {
    width: 20px;
    text-align: right;
    font-weight: 700;
    color: var(--ink);
    flex-shrink: 0;
}
.marketing-landing .rp .cot-doc {
    max-width: 312px;
    padding: 0;
    gap: 0;
    overflow: hidden;
    text-align: left;
}
.marketing-landing .rp .cot-doc-h {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 15px;
    border-bottom: 1px solid var(--soft);
    background: linear-gradient(180deg, #fbfaf6, #fff);
}
.marketing-landing .rp .cot-doc-t {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.15;
}
.marketing-landing .rp .cot-doc-badge {
    font-size: 9px;
    font-weight: 700;
    color: var(--green);
    background: var(--lime);
    padding: 3px 8px;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
}
.marketing-landing .rp .cot-doc-sec {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #16332a;
    opacity: 0.7;
    padding: 12px 15px 0;
}
.marketing-landing .rp .cot-doc-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 11px 15px 13px;
}
.marketing-landing .rp .cot-doc-foot {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 15px;
    border-top: 1px solid var(--soft);
    font-size: 10.5px;
    font-weight: 600;
    color: var(--ink-soft);
    background: #fcfbf8;
}
.marketing-landing .rp .cot-doc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(200, 240, 38, 0.25);
}
.marketing-landing .rp .rp-cards {
    max-width: 1080px;
    margin: 28px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    text-align: left;
}
.marketing-landing .rp .rpc {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 24px -12px rgba(60, 50, 20, 0.16);
}
.marketing-landing .rp .rpc-vis {
    height: 310px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--soft);
}
.marketing-landing .rp .rpc-bg {
    position: absolute;
    inset: -30px;
    background-size: cover;
    background-position: center;
    filter: blur(11px) saturate(1.2);
    transform: scale(1.3);
    opacity: 0.8;
}
.marketing-landing .rp .rpc-vis::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(250, 248, 245, 0.14),
        rgba(250, 248, 245, 0.34)
    );
    z-index: 1;
    pointer-events: none;
}
.marketing-landing .rp .rpc-vis > :not(.rpc-bg) {
    z-index: 2;
}
.marketing-landing .rp .rpc-body {
    padding: 20px 22px 24px;
}
.marketing-landing .rp .rpc-h {
    font-family: 'Newsreader', Georgia, serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.25;
    color: var(--ink);
    margin: 0 0 8px;
}
.marketing-landing .rp .rpc-p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin: 0;
}
.marketing-landing .rp .rpc-tl {
    position: absolute;
    inset: 0;
    padding: 0 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;
}
.marketing-landing .rp .rpc-row {
    display: flex;
    align-items: center;
    gap: 9px;
    background: var(--paper);
    border: 1px solid var(--soft);
    border-radius: 9px;
    padding: 10px 14px;
    font-size: 12px;
    color: var(--ink-soft);
    white-space: nowrap;
    overflow: hidden;
    flex-shrink: 0;
    width: 100%;
    max-width: 360px;
}
.marketing-landing .rp .rpc-row .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime);
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(200, 240, 38, 0.25);
}
.marketing-landing .rp .rpc-row b {
    color: var(--ink);
    font-weight: 600;
    margin-right: 2px;
}
.marketing-landing .rp .rpc-row.rpc-on {
    border-color: rgba(22, 51, 42, 0.35);
    background: #fff;
}
.marketing-landing .rp .rpc-voice {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
}
.marketing-landing .rp .rpc-mic {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.marketing-landing .rp .rpc-mic svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: var(--lime);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.marketing-landing .rp .rpc-mic::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--lime);
    opacity: 0.5;
    animation: rpMic 2s ease-out infinite;
}
@keyframes rpMic {
    0% {
        transform: scale(0.85);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}
.marketing-landing .rp .rpc-cmd {
    background: var(--paper);
    border-radius: 10px;
    box-shadow: 0 8px 20px -8px rgba(40, 50, 30, 0.22);
    padding: 9px 13px;
    font-size: 11.5px;
    font-style: italic;
    color: var(--ink);
    max-width: 82%;
}
@media (max-width: 860px) {
    .marketing-landing .rp .rp-cards {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
    .marketing-landing .rp .rpc-vis {
        height: 248px;
    }
}
.marketing-landing .ba {
    --green: #16332a;
    --lime: #c8f026;
    --paper: #fff;
    --cream: #faf8f5;
    --ink: #1c1100;
    --ink-soft: #5c5750;
    --line: #ece7df;
    background: var(--cream);
    padding: 72px 24px 20px;
}
.marketing-landing .ba-in {
    max-width: 1000px;
    margin: 0 auto;
}
.marketing-landing .ba-kick {
    display: block;
    text-align: center;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--green);
    opacity: 0.72;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.marketing-landing .ba-h {
    text-align: center;
    font-family: 'Newsreader', Georgia, serif;
    font-weight: 400;
    font-size: clamp(26px, 3.2vw, 38px);
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--ink);
    max-width: 600px;
    margin: 0 auto 44px;
}
@media (max-width: 760px) {
    .marketing-landing .ba {
        padding: 52px 16px 18px;
    }
    .marketing-landing .ba-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .marketing-landing .ba-h {
        margin-bottom: 32px;
    }
}
.marketing-landing .vtm {
    --green: #16332a;
    --lime: #c8f026;
    --paper: #fff;
    --cream: #faf8f5;
    --ink: #1c1100;
    --ink-soft: #5c5750;
    --line: #ece7df;
    padding: 18px 24px 76px;
    background: var(--cream);
}
.marketing-landing .vtm-card {
    max-width: 920px;
    margin: 0 auto;
    background: var(--paper);
    border-radius: 18px;
    padding: 30px 34px;
    display: grid;
    grid-template-columns: 196px 1fr;
    gap: 32px;
    align-items: center;
    box-shadow:
        0 1px 2px rgba(20, 40, 60, 0.03),
        0 18px 44px -30px rgba(20, 50, 40, 0.2),
        0 0 0 1px rgba(60, 50, 20, 0.07);
}
.marketing-landing .vtm-photo {
    position: relative;
    aspect-ratio: 5/6;
    border-radius: 12px;
    overflow: hidden;
    background: #0d1f1a;
}
.marketing-landing .vtm-photo video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}
.marketing-landing .vtm-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
@keyframes vtoPulse {
    0%,
    100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}
@keyframes vtoCur {
    50% {
        opacity: 0;
    }
}
.marketing-landing .vtm-body {
    min-width: 0;
}
.marketing-landing .vtm-quote {
    font-family: 'Newsreader', Georgia, serif;
    font-weight: 400;
    font-size: clamp(16.5px, 1.27vw, 18.7px);
    line-height: 1.55;
    letter-spacing: -0.008em;
    color: var(--ink);
    margin: 0 0 22px;
}
.marketing-landing .vtm-quote em {
    font-style: normal;
    font-weight: 400;
    color: inherit;
}
.marketing-landing .vtm-quote b {
    font-weight: 600;
    color: var(--ink);
}
.marketing-landing .vtm-foot {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}
.marketing-landing .vtm-who {
    min-width: 0;
}
.marketing-landing .vtm-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
}
.marketing-landing .vtm-role {
    font-size: 13.5px;
    color: var(--ink-soft);
    margin-top: 2px;
}
.marketing-landing .vtm-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 0;
    flex-shrink: 0;
    white-space: nowrap;
    background: var(--lime);
    color: var(--green);
    font-size: 13.5px;
    font-weight: 600;
    padding: 11px 20px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition:
        transform 0.15s,
        filter 0.15s;
}
.marketing-landing .vtm-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}
.marketing-landing .vtm-btn svg {
    width: 15px;
    height: 15px;
}
@media (max-width: 640px) {
    .marketing-landing .vtm {
        padding: 16px 16px 56px;
    }
    .marketing-landing .vtm-card {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 22px;
        max-width: 400px;
    }
    .marketing-landing .vtm-photo {
        width: 220px;
        max-width: 100%;
        margin: 0 auto;
    }
    .marketing-landing .vtm-foot {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .marketing-landing .vtm-btn {
        width: 100%;
        justify-content: center;
    }
}
.marketing-landing .weda-section {
    background: #faf8f5;
    padding: 60px 0 72px;
    text-align: center;
}
.marketing-landing .weda-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #c8f026;
    background: #16332a;
    border-radius: 100px;
    padding: 5px 14px;
    margin-bottom: 18px;
    letter-spacing: 0.02em;
}
.marketing-landing .weda-title {
    font-family: 'Newsreader', Georgia, serif;
    font-weight: 400;
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #1c1100;
    max-width: 680px;
    margin: 0 auto 16px;
    padding: 0 24px;
}
.marketing-landing .weda-sub {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
    padding: 0 24px;
    line-height: 1.55;
}

.marketing-landing .weda-carousel {
    max-width: 1480px;
    margin: 48px auto 0;
    position: relative;
    padding: 0 24px;
}

.marketing-landing .weda-track {
    display: flex;
    gap: 18px;
    padding: 14px 4px 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}
.marketing-landing .weda-track.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
}
.marketing-landing .weda-track::-webkit-scrollbar {
    display: none;
}

.marketing-landing .weda-card {
    flex: 0 0 264px;
    scroll-snap-align: start;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 3/4;
    text-decoration: none;
    color: inherit;
    background: #222;
    cursor: pointer;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
    -webkit-user-drag: none;
    user-drag: none;
}
.marketing-landing .weda-track.is-dragging .weda-card {
    cursor: grabbing;
}
.marketing-landing .weda-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px -16px rgba(15, 30, 25, 0.28);
}
.marketing-landing .weda-track.is-dragging .weda-card:hover {
    transform: none;
    box-shadow: none;
}

.marketing-landing .weda-photo {
    position: absolute;
    inset: 0;
}
.marketing-landing .weda-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.85) contrast(1.03) brightness(1.01);
    transition: transform 0.6s ease;
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}
.marketing-landing .weda-card:hover .weda-photo img {
    transform: scale(1.04);
}
.marketing-landing .weda-track.is-dragging .weda-card:hover .weda-photo img {
    transform: none;
}
.marketing-landing .weda-photo .weda-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    filter: saturate(0.85) contrast(1.03) brightness(1.01);
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.35s ease;
}

.marketing-landing .weda-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 50%,
        rgba(15, 30, 25, 0.45) 100%
    );
    pointer-events: none;
}
.marketing-landing .weda-card.fix-pink .weda-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(22, 51, 42, 0.18);
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
}

.marketing-landing .weda-arrow-mini {
    position: absolute;
    top: 13px;
    right: 13px;
    z-index: 3;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        transform 0.25s,
        background 0.25s;
    pointer-events: none;
}
.marketing-landing .weda-arrow-mini svg {
    width: 13px;
    height: 13px;
    stroke: #16332a;
    fill: none;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.marketing-landing .weda-card:hover .weda-arrow-mini {
    background: #c8f026;
    transform: translateX(2px);
}

.marketing-landing .weda-pill {
    position: absolute;
    bottom: 13px;
    left: 13px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 7px 13px 7px 8px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #16332a;
    box-shadow: 0 3px 12px -3px rgba(15, 30, 25, 0.22);
    pointer-events: none;
}
.marketing-landing .weda-pill-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.marketing-landing .weda-pill-icon svg {
    width: 12px;
    height: 12px;
}

.marketing-landing .weda-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ece6d6;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 8px 22px -8px rgba(15, 30, 25, 0.18);
    transition:
        opacity 0.25s,
        transform 0.2s,
        background 0.2s;
    padding: 0;
}
.marketing-landing .weda-nav svg {
    width: 17px;
    height: 17px;
    stroke: #16332a;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.marketing-landing .weda-nav:hover {
    background: #c8f026;
    border-color: #c8f026;
}
.marketing-landing .weda-nav.weda-prev {
    left: -6px;
}
.marketing-landing .weda-nav.weda-next {
    right: -6px;
}
.marketing-landing .weda-nav.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) scale(0.92);
}

.marketing-landing .weda-dots {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 0;
    margin-bottom: 12px;
}
.marketing-landing .weda-dot {
    /* Keep the small visual indicator inside a full touch/keyboard target. */
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.marketing-landing .weda-dot::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
    transition: width 0.3s, background-color 0.3s;
}
.marketing-landing .weda-dot.active::before {
    width: 18px;
    border-radius: 100px;
    background: #16332a;
}
.marketing-landing .weda-dot:focus-visible {
    outline: 2px solid #16332a;
    outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
    .marketing-landing .weda-dot::before {
        transition: none;
    }
}

.marketing-landing .weda-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #0f2b23;
    background: #c8f026;
    border-radius: 100px;
    padding: 13px 26px;
    text-decoration: none;
    transition:
        transform 0.15s,
        box-shadow 0.15s;
}
.marketing-landing .weda-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(200, 240, 38, 0.4);
}
.marketing-landing .weda-cta svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 640px) {
    .marketing-landing .weda-nav {
        display: none;
    }
    .marketing-landing .weda-card {
        flex: 0 0 55%;
    }
    .marketing-landing .weda-carousel {
        padding: 0 18px;
    }
    .marketing-landing .weda-track {
        cursor: auto;
    }
}
.marketing-landing .sec-section {
    background: #fff;
    padding: 72px 24px 60px;
    border-top: 1px solid #f0ede8;
}
.marketing-landing .sec-wrap {
    max-width: 1200px;
    margin: 0 auto;
}
.marketing-landing .sec-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 16px;
}
.marketing-landing .sec-header-left {
    flex: 1;
}
.marketing-landing .sec-title {
    font-family: 'Newsreader', Georgia, serif;
    font-weight: 400;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #1c1100;
    margin-bottom: 16px;
}
.marketing-landing .sec-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 540px;
}
.marketing-landing .sec-cta {
    flex-shrink: 0;
    background: #c8f026;
    color: #111;
    font-size: 14px;
    font-weight: 500;
    border-radius: 100px;
    padding: 11px 22px;
    text-decoration: none;
    transition: background 0.15s;
    margin-top: 41px;
}
.marketing-landing .sec-cta:hover {
    background: #b8e010;
}

.marketing-landing .sec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.marketing-landing .sec-video-wrap {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 16px;
    overflow: hidden;
    background: #f5f3ef;
}

.marketing-landing .sec-points {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.marketing-landing .sec-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.marketing-landing .sec-point-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.marketing-landing .sec-point-icon svg {
    width: 22px;
    height: 22px;
    stroke: #16332a;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.marketing-landing .sec-point-content {
    flex: 1;
}
.marketing-landing .sec-point-title {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin-bottom: 6px;
    line-height: 1.4;
}
.marketing-landing .sec-point-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .marketing-landing .sec-section {
        padding: 64px 18px 56px;
    }
    .marketing-landing .sec-header {
        flex-direction: column;
        gap: 14px;
        margin-bottom: 32px;
    }
    .marketing-landing .sec-cta {
        margin-top: 4px !important;
        align-self: flex-start;
    }
    .marketing-landing .sec-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
.marketing-landing .faq-section {
    background: #faf8f5;
    background-image:
        linear-gradient(rgba(15, 43, 35, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 43, 35, 0.045) 1px, transparent 1px);
    background-size: 56px 56px;
    background-position: -1px -1px;
    padding: 84px 24px 100px;
    border-top: 1px solid #f0ede8;
    position: relative;
}
.marketing-landing .faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            ellipse 800px 400px at 50% 0%,
            #faf8f5 30%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 800px 400px at 50% 100%,
            #faf8f5 30%,
            transparent 70%
        );
}
.marketing-landing .faq-wrap {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.marketing-landing .faq-header {
    text-align: center;
    margin-bottom: 56px;
}
.marketing-landing .faq-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #c8f026;
    background: #16332a;
    border-radius: 100px;
    padding: 6px 14px;
    margin-bottom: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.marketing-landing .faq-title {
    font-family: 'Newsreader', Georgia, serif;
    font-weight: 500;
    font-size: clamp(30px, 3.8vw, 46px);
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #1c1100;
    margin: 0 auto;
    max-width: 620px;
}
.marketing-landing .faq-title em {
    font-style: italic;
    color: #16332a;
    font-weight: 400;
}
.marketing-landing .faq-list {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e8e3d6;
    overflow: hidden;
    box-shadow:
        0 1px 2px rgba(15, 43, 35, 0.04),
        0 8px 32px rgba(15, 43, 35, 0.04);
}
.marketing-landing .faq-item {
    border-bottom: 1px solid #f3efe5;
}
.marketing-landing .faq-item:last-child {
    border-bottom: none;
}
.marketing-landing .faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 22px 28px;
    cursor: pointer;
    list-style: none;
    font-size: 16px;
    font-weight: 500;
    color: #1c1100;
    line-height: 1.4;
    outline: none;
    transition: background 0.2s;
}
.marketing-landing .faq-item summary::-webkit-details-marker {
    display: none;
}
.marketing-landing .faq-item summary:hover {
    background: #faf8f5;
}
.marketing-landing .faq-item[open] summary {
    background: #faf8f5;
}
.marketing-landing .faq-toggle {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f5f2ea;
    border: 1px solid #e8e3d6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16332a;
    transition: all 0.25s;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
}
.marketing-landing .faq-item[open] .faq-toggle {
    background: #16332a;
    color: #c8f026;
    border-color: #16332a;
    transform: rotate(45deg);
}
.marketing-landing .faq-a {
    padding: 4px 28px 26px;
    font-size: 14.5px;
    color: #5b5650;
    line-height: 1.65;
    max-width: 680px;
}
.marketing-landing .faq-a a {
    color: #16332a;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.marketing-landing .faq-a a:hover {
    color: #0f2b23;
}
.marketing-landing .faq-a strong {
    color: #1c1100;
    font-weight: 500;
}
.marketing-landing .faq-a em {
    font-style: italic;
    color: #1c1100;
}
@media (max-width: 768px) {
    .marketing-landing .faq-section {
        padding: 60px 16px 72px;
        background-size: 40px 40px;
    }
    .marketing-landing .faq-header {
        margin-bottom: 40px;
    }
    .marketing-landing .faq-item summary {
        font-size: 15px;
        padding: 18px 20px;
        gap: 16px;
    }
    .marketing-landing .faq-a {
        padding: 0 20px 22px;
        font-size: 14px;
    }
}
.marketing-landing .final-cta-section {
    background: #faf8f5;
    padding: 32px 24px 48px;
}
.marketing-landing .final-cta-wrap {
    max-width: 1320px;
    margin: 0 auto;
    border-radius: 24px;
    padding: 120px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 540px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.marketing-landing .final-cta-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: blur(2px) brightness(0.55);
}
.marketing-landing .final-cta-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(15, 43, 35, 0.5) 0%,
            rgba(15, 43, 35, 0.7) 100%
        ),
        radial-gradient(
            ellipse at 20% 80%,
            rgba(200, 240, 38, 0.15) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at 80% 20%,
            rgba(200, 240, 38, 0.08) 0%,
            transparent 50%
        );
    pointer-events: none;
    z-index: 1;
}
.marketing-landing .final-cta-deco {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}
.marketing-landing .final-cta-logo {
    position: relative;
    z-index: 3;
    margin-bottom: 24px;
    display: inline-block;
}
.marketing-landing .final-cta-logo svg {
    width: 42px;
    height: 38px;
    filter: drop-shadow(0 2px 12px rgba(200, 240, 38, 0.3));
}
.marketing-landing .final-cta-title {
    position: relative;
    z-index: 3;
    font-family: 'Newsreader', Georgia, serif;
    font-weight: 500;
    font-size: clamp(40px, 5.5vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #faf8f5;
    max-width: 780px;
    margin: 0 auto 36px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}
.marketing-landing .final-cta-buttons {
    position: relative;
    z-index: 3;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.marketing-landing .final-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #0f2b23;
    background: #c8f026;
    border: none;
    border-radius: 100px;
    padding: 16px 32px;
    text-decoration: none;
    transition:
        transform 0.15s,
        box-shadow 0.15s;
    cursor: pointer;
}
.marketing-landing .final-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(200, 240, 38, 0.4);
}
.marketing-landing .final-cta-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.marketing-landing .final-cta-btn-icon svg {
    width: 14px;
    height: 14px;
    fill: #0f2b23;
}
.marketing-landing .final-cta-btn-secondary {
    background: transparent;
    color: #faf8f5;
    border: 1px solid rgba(250, 248, 245, 0.35);
    backdrop-filter: blur(8px);
}
.marketing-landing .final-cta-btn-secondary:hover {
    background: rgba(250, 248, 245, 0.08);
    border-color: rgba(250, 248, 245, 0.6);
    box-shadow: none;
}
.marketing-landing .final-cta-btn-secondary .final-cta-btn-icon svg {
    fill: #faf8f5;
    width: 14px;
    height: 14px;
}
.marketing-landing .final-cta-sub {
    position: relative;
    z-index: 3;
    font-size: 12.5px;
    color: #faf8f5;
    opacity: 0.55;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 6px;
}
@media (max-width: 768px) {
    .marketing-landing .final-cta-section {
        padding: 24px 14px 32px;
    }
    .marketing-landing .final-cta-wrap {
        padding: 72px 24px;
        border-radius: 18px;
    }
    .marketing-landing .final-cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .marketing-landing .final-cta-btn {
        justify-content: center;
        padding: 14px 28px;
    }
}
.marketing-landing .sticky-cta {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    border-top: 1px solid #eee;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(110%);
    transition: transform 0.3s ease;
}
.marketing-landing .sticky-cta.visible {
    transform: translateY(0);
}
.marketing-landing .sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
    background: #c8f026;
    color: #16332a;
    font-size: 15.5px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 6px 18px -6px rgba(160, 200, 20, 0.55);
}
.marketing-landing .sticky-cta small {
    display: block;
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 6px;
}
@media (max-width: 768px) {
    .marketing-landing .sticky-cta {
        display: block;
    }
}
.marketing-landing .footer {
    background: #faf8f5;
    padding: 80px 24px 40px;
    border-top: 1px solid #f0ede8;
}
.marketing-landing .footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
}
.marketing-landing .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid #f0ede8;
}
.marketing-landing .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 280px;
}
.marketing-landing .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #111;
}
.marketing-landing .footer-logo svg {
    width: 29px;
    height: 26px;
}
.marketing-landing .footer-logo-name {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 22px;
    letter-spacing: -0.02em;
}
.marketing-landing .footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}
.marketing-landing .footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}
.marketing-landing .footer-social {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #f0ede8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition:
        border-color 0.15s,
        color 0.15s;
}
.marketing-landing .footer-social:hover {
    border-color: #0f2b23;
    color: #0f2b23;
}
.marketing-landing .footer-social svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}
.marketing-landing .footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.marketing-landing .footer-col-title {
    font-size: 13px;
    font-weight: 600;
    color: #111;
    margin-bottom: 2px;
}
/* Unpublished destinations share the typography of links without becoming interactive. */
.marketing-landing .footer-col > :is(a, span) {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.15s;
}
.marketing-landing .footer-col a:hover {
    color: #0f2b23;
}
.marketing-landing .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    flex-wrap: wrap;
    gap: 16px;
}
.marketing-landing .footer-copy {
    font-size: 12.5px;
    color: var(--text-muted);
}
.marketing-landing .footer-legal {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}
.marketing-landing .footer-legal > :is(a, span) {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.15s;
}
.marketing-landing .footer-legal a:hover {
    color: #4a453e;
}
@media (max-width: 900px) {
    .marketing-landing .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .marketing-landing .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
    }
}
@media (max-width: 480px) {
    .marketing-landing .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .marketing-landing .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
.marketing-landing .cr-arrow {
    display: none;
}
@media (max-width: 820px) {
    .marketing-landing {
        overflow-x: hidden !important;
    }
    .marketing-landing .hero-inner {
        min-width: 0 !important;
        grid-template-columns: 1fr !important;
        text-align: center !important;
        justify-items: center !important;
        padding-left: 0 !important;
    }
    .marketing-landing .hero-inner > * {
        min-width: 0 !important;
        max-width: 100% !important;
    }
    .marketing-landing .hero {
        padding-left: 16px !important;
        padding-right: 16px !important;
        padding-bottom: 46px !important;
    }
    .marketing-landing .hero-text,
    .marketing-landing .hero-sub {
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
    }
    .marketing-landing .hero-ctas {
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }
    .marketing-landing .hero-ctas > a {
        width: 100% !important;
        max-width: 306px !important;
        margin: 0 auto !important;
        justify-content: center !important;
        text-align: center !important;
    }
    .marketing-landing .hero-badges {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px 16px !important;
    }
    .marketing-landing .vtm-photo {
        width: 180px !important;
        max-width: 180px !important;
        height: auto !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .marketing-landing .note-h {
        flex-direction: row !important;
        align-items: center !important;
        gap: 8px !important;
    }
    .marketing-landing .note-btn {
        display: none !important;
    }
    .marketing-landing .sc-photo,
    .marketing-landing .ms .sh-photo,
    .marketing-landing .rp .sh-photo {
        display: block !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        border-radius: 20px !important;
    }
    .marketing-landing .ms .pop,
    .marketing-landing .rp .pop {
        display: none !important;
    }
    .marketing-landing .ms {
        padding-bottom: 46px !important;
    }
    .marketing-landing .ba {
        padding-top: 22px !important;
    }
    .marketing-landing .sc-photo {
        bottom: 86px !important;
    }
    .marketing-landing .rp-cards {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 14px !important;
        padding: 4px 16px 14px !important;
        margin: 0 -16px !important;
        grid-template-columns: none !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .marketing-landing .cr-wrap {
        position: relative;
    }
    .marketing-landing .cr-arrow {
        position: absolute !important;
        right: 6px;
        top: 42%;
        transform: translateY(-50%);
        z-index: 6;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: none;
        padding: 0;
        cursor: pointer;
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 8px 22px -8px rgba(20, 35, 28, 0.4);
        color: #16332a;
        font:
            600 24px/1 'Inter',
            sans-serif;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .marketing-landing .ms .note-b .msec:first-child .li:nth-child(n + 4) {
        display: none !important;
    }
    .marketing-landing .ms .note-b .msec-t {
        font-size: 10px !important;
        letter-spacing: 0.06em !important;
        margin-bottom: 8px !important;
    }
    .marketing-landing .ms .note-b .msec {
        margin-bottom: 14px !important;
    }
    .marketing-landing .ms .note-b .msec:nth-child(2) {
        background: none !important;
        border-left: 2px solid rgba(22, 51, 42, 0.22) !important;
        border-radius: 0 !important;
        padding: 2px 0 2px 13px !important;
        margin: 0 0 14px !important;
    }
    .marketing-landing .ms .note-b .msec:nth-child(2) .msec-t {
        color: #16332a !important;
        opacity: 0.9 !important;
    }
    .marketing-landing .ms .note-b .li {
        font-size: 12.5px !important;
        line-height: 1.42 !important;
        margin-bottom: 7px !important;
    }
    .marketing-landing .rp .rp-cards {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 14px !important;
        max-width: none !important;
        grid-template-columns: none !important;
        align-items: flex-start !important;
        padding: 4px 16px 14px !important;
        margin: 22px -16px 0 !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .marketing-landing .rp .rp-cards::-webkit-scrollbar {
        display: none;
    }
    .marketing-landing .rp .rp-cards > .rpc {
        flex: 0 0 76% !important;
        max-width: 76% !important;
        scroll-snap-align: center !important;
        margin: 0 !important;
    }
    .marketing-landing .rp .rpc-vis {
        height: 206px !important;
    }
    .marketing-landing .rp .rp-cards .cot-doc {
        transform: scale(0.86);
        transform-origin: center center;
    }
    .marketing-landing .rp .rp-cards .rpc-tl,
    .marketing-landing .rp .rp-cards .rpc-cot {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
    .marketing-landing .rp .rp-cards .rpc-row {
        transform: scale(0.94);
        transform-origin: center center;
    }
}
@media (max-width: 820px) {
    .marketing-landing {
        overflow-x: hidden !important;
    }
    .marketing-landing img,
    .marketing-landing video,
    .marketing-landing svg {
        max-width: 100% !important;
    }
}
@media (max-width: 820px) {
    .marketing-landing .rpc-body {
        padding-right: 26px !important;
    }
    .marketing-landing .rpc-body p,
    .marketing-landing .rpc-h {
        text-wrap: pretty;
    }
    .marketing-landing .ba {
        padding-left: 14px !important;
        padding-right: 14px !important;
        padding-top: 24px !important;
    }
    .marketing-landing .ba-h {
        margin-bottom: 24px !important;
    }
    .marketing-landing .ba-kick {
        margin-bottom: 10px !important;
    }
    .marketing-landing .ba-col {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .marketing-landing .ba-li span:last-child {
        line-height: 1.55 !important;
    }
    .marketing-landing .ba-h {
        padding-left: 2% !important;
        padding-right: 2% !important;
    }
}
@media (max-width: 900px) {
    .marketing-landing .rp-cards {
        align-items: stretch !important;
    }
    .marketing-landing .rp-cards > .rpc {
        height: auto !important;
        align-self: stretch !important;
    }
    .marketing-landing .cr-arrow {
        display: flex !important;
    }
}
@media (max-width: 519px) {
    .marketing-landing .rp-cards > .rpc.rpc {
        flex: 0 0 78% !important;
        max-width: 78% !important;
    }
}
@media (min-width: 520px) and (max-width: 699px) {
    .marketing-landing .rp-cards > .rpc.rpc {
        flex: 0 0 58% !important;
        max-width: 58% !important;
    }
    .marketing-landing .ba-grid,
    .marketing-landing .ba-in {
        max-width: 600px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}
@media (min-width: 700px) and (max-width: 900px) {
    .marketing-landing .rp-cards > .rpc.rpc {
        flex: 0 0 44% !important;
        max-width: 44% !important;
    }
    .marketing-landing .ba-grid,
    .marketing-landing .ba-in {
        max-width: 660px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}
@media (min-width: 520px) and (max-width: 900px) {
    .marketing-landing .ba-h {
        max-width: 620px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}
@media (min-width: 520px) and (max-width: 1100px) {
    .marketing-landing .rp-cards > .rpc .rpc-h {
        font-size: 18.7px !important;
    }
}
@media (max-width: 820px) {
    .marketing-landing .rp .page {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 auto;
        height: 508px !important;
        padding: 15px 22px 0 !important;
    }
    .marketing-landing .rp .pg-p,
    .marketing-landing .rp .pg-sal,
    .marketing-landing .rp .pg-close,
    .marketing-landing .rp .sc-edit {
        font-size: 14px !important;
        line-height: 1.55 !important;
    }
    .marketing-landing .rp .pg-p {
        margin-bottom: 6px !important;
    }
    .marketing-landing .rp .pg-sal {
        margin-bottom: 7px !important;
    }
    .marketing-landing .rp .pg-close {
        margin-top: 7px !important;
    }
    .marketing-landing .rp .pg-to {
        font-size: 13.5px !important;
    }
    .marketing-landing .rp .pg-obj {
        font-size: 12px !important;
    }
    .marketing-landing .rp .pg-lh b {
        font-size: 15px !important;
    }
    .marketing-landing .rp .pg-lh span,
    .marketing-landing .rp .pg-date {
        font-size: 11.5px !important;
    }
    .marketing-landing .rp .pg-sig b {
        font-size: 13.5px !important;
    }
    .marketing-landing .rp .pg-sig span {
        font-size: 11px !important;
    }
    .marketing-landing .rp .sc-p,
    .marketing-landing .rp .li {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
    .marketing-landing .rp .sc-t {
        font-size: 11px !important;
    }
    .marketing-landing .rp .stack {
        height: 508px !important;
        padding: 0;
    }
    @media (max-width: 379px) {
        .marketing-landing .rp .page {
            height: 556px !important;
        }
        .marketing-landing .rp .stack {
            height: 556px !important;
        }
    }
    .marketing-landing .rp .stack::before,
    .marketing-landing .rp .stack::after {
        display: none;
    }
    .marketing-landing .rp .sc {
        margin-bottom: 7px !important;
    }
    .marketing-landing .rp .sc-t {
        font-size: 8.5px !important;
        letter-spacing: 0.09em !important;
        margin-bottom: 3px !important;
    }
    .marketing-landing .rp .sc-p,
    .marketing-landing .rp .li {
        font-size: 11.5px !important;
        line-height: 1.38 !important;
    }
    .marketing-landing .rp .li {
        margin-bottom: 3px !important;
    }
    .marketing-landing .rp .page-foot {
        left: 20px !important;
        right: 20px !important;
        padding: 5px 0 9px !important;
        font-size: 9px !important;
    }
}
@media (max-width: 430px) {
    .marketing-landing .rp .sc-p,
    .marketing-landing .rp .li {
        font-size: 11px !important;
        line-height: 1.34 !important;
    }
    .marketing-landing .rp .sc {
        margin-bottom: 6px !important;
    }
}
.marketing-landing .rpc-p {
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: #4a453e !important;
}
.marketing-landing .rpc-h {
    font-size: 19px !important;
    margin: 0 0 10px !important;
}
.marketing-landing .ms-sub,
.marketing-landing .rp-sub {
    font-size: 18px !important;
    line-height: 1.6 !important;
}
.marketing-landing nav {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 74px !important;
    min-height: 74px !important;
    padding: 0 24px !important;
    box-sizing: border-box !important;
}
@media (max-width: 960px) {
    .marketing-landing nav {
        height: 64px !important;
        min-height: 64px !important;
        padding: 0 16px !important;
    }
}
@media (max-width: 700px) {
    .marketing-landing .psec {
        padding-top: 32px !important;
        padding-bottom: 20px !important;
    }
    .marketing-landing .ms {
        padding-top: 30px !important;
        padding-bottom: 26px !important;
    }
    .marketing-landing .rp {
        padding-top: 28px !important;
        padding-bottom: 28px !important;
    }
    .marketing-landing .ps-title,
    .marketing-landing .ms-title,
    .marketing-landing .rp-title {
        margin-bottom: 34px !important;
    }
    .marketing-landing .ms-sub,
    .marketing-landing .rp-sub {
        margin-bottom: 14px !important;
        line-height: 1.45 !important;
        font-size: 17px !important;
    }
    .marketing-landing .cv-live {
        padding-top: 26px !important;
        padding-bottom: 22px !important;
    }
    .marketing-landing .note-h {
        padding-top: 11px !important;
        padding-bottom: 11px !important;
    }
    .marketing-landing .note-b {
        padding: 13px !important;
    }
    .marketing-landing .mtj-plot,
    .marketing-landing .mtj-svg {
        height: 108px !important;
    }
    .marketing-landing .mtj-cap {
        margin-top: 10px !important;
    }
    .marketing-landing .rp-cards {
        padding-top: 0 !important;
        padding-bottom: 6px !important;
    }
    .marketing-landing .rpc-body {
        padding: 15px 20px 18px 17px !important;
    }
    .marketing-landing .rpc-h {
        margin-bottom: 7px !important;
    }
    .marketing-landing .rp .docv {
        padding: 11px 10px 12px !important;
    }
    .marketing-landing .psec .cv-live {
        padding-top: 20px !important;
        padding-bottom: 18px !important;
    }
    .marketing-landing .nc-stage {
        height: 552px !important;
    }
}

@media (min-width: 861px) {
    .marketing-landing .rp .rpc-h {
        font-size: 20px !important;
        line-height: 1.28 !important;
    }
    .marketing-landing .rp .rpc-p {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
}
@media (min-width: 1200px) {
    .marketing-landing .rp .rpc-h {
        font-size: 22px !important;
        margin: 0 0 11px !important;
    }
    .marketing-landing .rp .rpc-p {
        font-size: 17px !important;
        line-height: 1.6 !important;
    }
}
.marketing-landing .footer-col > :is(a, span) {
    font-size: 13.5px !important;
    color: #6f6a62 !important;
}
.marketing-landing .footer-col a:hover {
    color: #1c1100 !important;
}
.marketing-landing .footer-tagline {
    color: #6f6a62 !important;
}
.marketing-landing .ba-lbl {
    font-size: 12.5px !important;
}
.marketing-landing .weda-label {
    font-size: 12.5px !important;
}
.marketing-landing .faq-label {
    font-size: 12px !important;
}
.marketing-landing .sticky-cta small {
    font-size: 12.5px !important;
    color: #6f6a62 !important;
}
.marketing-landing .final-cta-sub {
    font-size: 12.5px !important;
    opacity: 0.72 !important;
}
.marketing-landing .ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 920px;
    margin: 0 auto;
    text-align: left;
}
.marketing-landing .ba-col {
    border-radius: 20px;
    padding: 28px 26px 30px;
    box-sizing: border-box;
}
.marketing-landing .ba-before {
    background: #f0ede8;
    border: 1px solid var(--line, #ece7df);
}
.marketing-landing .ba-after {
    background: var(--green, #16332a);
}
.marketing-landing .ba-lbl {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 6px 13px;
    border-radius: 999px;
    margin-bottom: 18px;
}
.marketing-landing .ba-before .ba-lbl {
    background: #e2ddd4;
    color: var(--text-muted);
}
.marketing-landing .ba-after .ba-lbl {
    background: rgba(200, 240, 38, 0.16);
    color: var(--lime, #c8f026);
}
.marketing-landing .ba-li {
    display: flex;
    gap: 11px;
    font-size: 15.5px;
    line-height: 1.55;
    margin-bottom: 15px;
}
.marketing-landing .ba-li:last-child {
    margin-bottom: 0;
}
.marketing-landing .ba-before .ba-li {
    color: #565047;
}
.marketing-landing .ba-after .ba-li {
    color: rgba(255, 255, 255, 0.82);
}
.marketing-landing .ba-after .ba-li b {
    color: #fff;
    font-weight: 600;
}
.marketing-landing .ba-before .ba-li b {
    color: #332d24;
    font-weight: 600;
}
.marketing-landing .ba-ic {
    flex-shrink: 0;
    width: 19px;
    height: 19px;
    margin-top: 1px;
}
.marketing-landing .ba-before .ba-ic svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: #b3aca0;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.marketing-landing .ba-after .ba-ic svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: var(--lime, #c8f026);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
@media (min-width: 1200px) {
    .marketing-landing .ba-li {
        font-size: 16.5px;
    }
}
@media (max-width: 860px) {
    .marketing-landing .ba-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: 100%;
    }
    .marketing-landing .ba-col {
        padding: 22px 20px 24px;
        border-radius: 16px;
    }
    .marketing-landing .ba-li {
        font-size: 15px;
        margin-bottom: 13px;
        gap: 10px;
    }
}
@media (min-width: 901px) {
    .marketing-landing .footer-top {
        grid-template-columns: 1.5fr 1fr 1.9fr 1fr 1fr !important;
    }
    .marketing-landing .footer-col-pro {
        display: block !important;
        column-count: 2;
        column-gap: 32px;
    }
}
@media (max-width: 900px) {
    .marketing-landing .footer-col-pro {
        grid-column: 1 / -1;
        display: block !important;
        column-count: 3;
        column-gap: 26px;
    }
}
@media (max-width: 600px) {
    .marketing-landing .footer-col-pro {
        column-count: 2;
        column-gap: 18px;
    }
}
.marketing-landing .footer-col-pro .footer-col-title {
    column-span: all;
    -webkit-column-span: all;
    margin-bottom: 14px;
}
.marketing-landing .footer-col-pro > :is(a, span) {
    display: block;
    margin-bottom: 14px;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
}
.marketing-landing .footer-col-pro > :is(a, span):last-child {
    margin-bottom: 0;
}
@media (max-width: 700px) {
    .marketing-landing .vtm {
        padding-bottom: 24px !important;
    }
    .marketing-landing .weda-section {
        padding-top: 34px !important;
    }
}
@media (max-width: 600px) {
    .marketing-landing .sec-anim-timeline {
        padding: 12px 14px 14px !important;
        gap: 10px !important;
        justify-content: center !important;
    }
    .marketing-landing .sec-anim-step {
        flex: 0 0 auto !important;
    }
    .marketing-landing .sec-anim-step .sec-anim-step-label {
        display: none !important;
    }
    .marketing-landing .sec-anim-step.active .sec-anim-step-label {
        display: inline !important;
        font-size: 12.5px !important;
        white-space: nowrap;
    }
}
@media (max-width: 700px) {
    .marketing-landing .sc-photo,
    .marketing-landing .sh-photo {
        box-shadow: none !important;
    }
}
@media (max-width: 820px) {
    .marketing-landing .psec {
        padding-top: 66px !important;
        padding-bottom: 88px !important;
    }
    .marketing-landing .footer {
        padding-top: 70px !important;
    }
}
@media (max-width: 820px) {
    .marketing-landing .msum .msum-l:last-child {
        display: none !important;
    }
    .marketing-landing .psec {
        padding-bottom: 64px !important;
    }
    .marketing-landing .ms {
        padding-top: 22px !important;
    }
}
