/* =========================================================
   MYOTEC — DESIGN SYSTEM DES PAGES PREMIUM
   Version 2.6.1
   ========================================================= */

.mtc-popup-loader {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

.mtc-page {
    --mtc-blue: #00c8ff;
    --mtc-blue-deep: #007fa8;
    --mtc-blue-soft: #dff8ff;
    --mtc-ink: #050505;
    --mtc-ink-2: #101214;
    --mtc-ink-3: #181b1e;
    --mtc-white: #ffffff;
    --mtc-paper: #f5f7f8;
    --mtc-muted: #66717d;
    --mtc-line: rgba(5, 5, 5, 0.12);
    --mtc-line-dark: rgba(255, 255, 255, 0.14);
    --mtc-display: "Agrandir", "Montserrat", Arial, sans-serif;
    --mtc-text: "Montserrat", Arial, sans-serif;
    --mtc-radius-xs: 14px;
    --mtc-radius-sm: 20px;
    --mtc-radius: 30px;
    --mtc-radius-lg: 46px;
    --mtc-shell: 1240px;
    --mtc-shadow: 0 24px 72px rgba(8, 18, 24, 0.13);
    --mtc-shadow-dark: 0 30px 90px rgba(0, 0, 0, 0.38);
    --mtc-ease: cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: clip;
    background: var(--mtc-white);
    color: var(--mtc-ink);
    font-family: var(--mtc-text);
    font-size: 16px;
    line-height: 1.65;
    isolation: isolate;
}

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

.mtc-page :where(h1, h2, h3, h4, p, ul, ol, figure, blockquote) {
    margin-top: 0;
}

.mtc-page :where(img, svg, video) {
    display: block;
    max-width: 100%;
}

.mtc-page :where(button, input, select, textarea) {
    font: inherit;
}

.mtc-page a {
    color: inherit;
}

.mtc-page :where(a, button, input, select, textarea):focus-visible {
    outline: 3px solid var(--mtc-blue);
    outline-offset: 4px;
}

.mtc-page [id] {
    scroll-margin-top: 112px;
}

.mtc-shell {
    width: min(calc(100% - 48px), var(--mtc-shell));
    margin-inline: auto;
}

.mtc-section {
    position: relative;
    padding-block: clamp(78px, 7.5vw, 116px);
}

.mtc-section--compact {
    padding-block: clamp(56px, 5.5vw, 84px);
}

.mtc-section--dark {
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 0%, rgba(0, 200, 255, 0.16), transparent 34%),
        radial-gradient(circle at 90% 90%, rgba(0, 200, 255, 0.08), transparent 30%),
        var(--mtc-ink);
    color: var(--mtc-white);
}

.mtc-section--soft {
    background:
        linear-gradient(180deg, rgba(223, 248, 255, 0.42), transparent 34%),
        var(--mtc-paper);
}

.mtc-section--blue {
    background: var(--mtc-blue);
    color: var(--mtc-ink);
}

.mtc-section-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 54px 54px;
}

.mtc-section-grid::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.45));
}

.mtc-section-grid > * {
    position: relative;
    z-index: 1;
}

.mtc-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--mtc-blue-deep);
    font-family: var(--mtc-display);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 2.4px;
    line-height: 1.2;
    text-transform: uppercase;
}

.mtc-section--dark .mtc-kicker,
.mtc-hero .mtc-kicker {
    color: var(--mtc-blue);
}

.mtc-kicker::before {
    content: "";
    width: 17px;
    height: 23px;
    flex: 0 0 auto;
    background: currentColor;
    clip-path: polygon(48% 0, 92% 0, 66% 38%, 91% 38%, 24% 100%, 42% 56%, 11% 56%);
    filter: drop-shadow(0 0 7px rgba(0, 200, 255, 0.58));
    animation: mtc-electric-pulse 3.2s ease-in-out infinite;
}

.mtc-kicker--electric {
    gap: 11px;
}

.mtc-kicker--electric::before {
    display: none;
}

.mtc-electric-bolt {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    color: var(--mtc-blue);
    filter: drop-shadow(0 0 8px rgba(0, 200, 255, 0.56));
    animation: mtc-electric-pulse 2.8s ease-in-out infinite;
}

.mtc-electric-bolt:last-child {
    animation-delay: -1.4s;
}

.mtc-electric-bolt svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
    stroke: none;
}

@keyframes mtc-electric-pulse {
    0%,
    100% {
        opacity: 0.68;
        transform: translateY(0) scale(0.94);
    }
    50% {
        opacity: 1;
        transform: translateY(-1px) scale(1.08);
    }
}

.mtc-display,
.mtc-title,
.mtc-card h3,
.mtc-step h3,
.mtc-article-card h2,
.mtc-article-card h3 {
    font-family: var(--mtc-display);
    text-wrap: balance;
}

.mtc-display {
    max-width: 760px;
    margin-bottom: 22px;
    font-size: clamp(41px, 4vw, 66px);
    font-weight: 950;
    letter-spacing: clamp(-3.6px, -0.05em, -1.8px);
    line-height: 0.96;
    text-transform: uppercase;
}

.mtc-display strong,
.mtc-title strong {
    color: var(--mtc-blue);
    font-weight: inherit;
}

.mtc-title {
    max-width: 820px;
    margin-bottom: 24px;
    font-size: clamp(36px, 3.7vw, 60px);
    font-weight: 950;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.mtc-title--small {
    font-size: clamp(32px, 3.4vw, 52px);
}

.mtc-lead {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--mtc-muted);
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.65;
}

.mtc-section--dark .mtc-lead,
.mtc-hero .mtc-lead {
    color: rgba(255, 255, 255, 0.76);
}

.mtc-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
    align-items: start;
    gap: 46px;
    margin-bottom: clamp(46px, 6vw, 82px);
}

.mtc-section-head .mtc-title {
    margin-bottom: 0;
}

.mtc-section-head .mtc-lead {
    justify-self: end;
    padding-top: 48px;
}

.mtc-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 36px;
}

.mtc-button {
    min-height: 56px;
    padding: 0 28px;
    border: 2px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    background: var(--mtc-blue);
    color: var(--mtc-ink) !important;
    font-family: var(--mtc-display);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 1.35px;
    line-height: 1;
    text-decoration: none !important;
    text-transform: uppercase;
    box-shadow: 0 16px 36px rgba(0, 200, 255, 0.2);
    overflow: hidden;
    transition:
        transform 0.35s var(--mtc-ease),
        box-shadow 0.35s var(--mtc-ease),
        background-color 0.35s var(--mtc-ease),
        border-color 0.35s var(--mtc-ease),
        color 0.35s var(--mtc-ease);
}

.mtc-button::after {
    content: "→";
    font-size: 18px;
    line-height: 1;
    transition: transform 0.35s var(--mtc-ease);
}

.mtc-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 44px rgba(0, 200, 255, 0.28);
}

.mtc-button:hover::after {
    transform: translateX(4px);
}

.mtc-button--dark {
    background: var(--mtc-ink);
    color: var(--mtc-white) !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.mtc-button--light {
    background: var(--mtc-white);
    color: var(--mtc-ink) !important;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
}

.mtc-button--ghost {
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(0, 0, 0, 0.14);
    color: var(--mtc-white) !important;
    box-shadow: none;
    backdrop-filter: blur(8px);
}

.mtc-button--ghost-dark {
    border-color: var(--mtc-line);
    background: transparent;
    color: var(--mtc-ink) !important;
    box-shadow: none;
}

.mtc-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--mtc-ink);
    font-family: var(--mtc-display);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 1.2px;
    text-decoration: none;
    text-transform: uppercase;
}

.mtc-text-link::after {
    content: "↗";
    color: var(--mtc-blue-deep);
    font-size: 17px;
}

/* Hero */

.mtc-hero {
    position: relative;
    min-height: min(820px, calc(100svh - 72px));
    padding: clamp(124px, 10vw, 154px) 0 clamp(72px, 6.5vw, 94px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 12%, rgba(0, 200, 255, 0.17), transparent 34%),
        linear-gradient(145deg, #030303, #0e1114 72%, #060606);
    color: var(--mtc-white);
}

.mtc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 62px 62px;
    mask-image: linear-gradient(90deg, #000 0%, transparent 72%);
}

.mtc-hero::after {
    content: "";
    position: absolute;
    left: -8%;
    right: -8%;
    bottom: -80px;
    height: 150px;
    background: var(--mtc-white);
    transform: rotate(-2.4deg);
    transform-origin: center;
}

.mtc-hero--compact {
    min-height: min(680px, calc(100svh - 72px));
}

.mtc-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.72fr);
    align-items: center;
    gap: clamp(42px, 5vw, 72px);
}

.mtc-hero__content {
    max-width: 680px;
}

.mtc-hero__formula {
    margin: 27px 0 0;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px 14px;
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--mtc-display);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.mtc-hero__formula strong {
    color: var(--mtc-blue);
    font-size: clamp(24px, 2.4vw, 38px);
    letter-spacing: -0.04em;
}

.mtc-hero__formula span {
    color: rgba(255, 255, 255, 0.36);
    font-size: 21px;
}

.mtc-hero__visual {
    position: relative;
    width: min(100%, 480px);
    justify-self: end;
}

.mtc-hero__frame {
    position: relative;
    height: clamp(470px, 54vh, 540px);
    min-height: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 180px 28px 28px 28px;
    background: var(--mtc-ink-3);
    box-shadow: var(--mtc-shadow-dark);
    transform: rotate(1deg);
    transition:
        transform 0.9s var(--mtc-ease),
        box-shadow 0.9s var(--mtc-ease);
}

.mtc-hero__frame::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.76)),
        linear-gradient(90deg, rgba(0, 200, 255, 0.12), transparent 34%);
}

.mtc-hero__frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
    --mtc-image-scale: 1.025;
    transition: transform 1.2s var(--mtc-ease);
}

.mtc-hero__visual:hover .mtc-hero__frame {
    transform: rotate(0.25deg) translateY(-4px);
    box-shadow: 0 38px 110px rgba(0, 0, 0, 0.48);
}

.mtc-hero__visual:hover .mtc-hero__frame img {
    --mtc-image-scale: 1.065;
}

[data-mtc-page="ems"] .mtc-hero__frame img {
    object-position: 22% center;
}

.mtc-hero__index {
    position: absolute;
    left: -34px;
    bottom: 42px;
    z-index: 3;
    width: 126px;
    height: 126px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(2, 2, 2, 0.7);
    color: var(--mtc-white);
    text-align: center;
    backdrop-filter: blur(14px);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.42);
}

.mtc-hero__index > div {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.mtc-hero__index strong {
    display: block;
    width: 100%;
    color: var(--mtc-blue);
    font-family: var(--mtc-display);
    font-size: 27px;
    font-weight: 950;
    line-height: 1;
    text-align: center;
}

.mtc-hero__index span {
    display: block;
    width: 100%;
    max-width: 94px;
    margin-top: 7px;
    margin-inline: auto;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    line-height: 1.25;
    text-align: center;
    text-transform: uppercase;
}

.mtc-hero__note {
    position: absolute;
    top: 36px;
    right: -18px;
    z-index: 3;
    max-width: 210px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.68);
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    line-height: 1.45;
    backdrop-filter: blur(12px);
}

.mtc-hero__note strong {
    display: block;
    margin-bottom: 3px;
    color: var(--mtc-white);
    font-family: var(--mtc-display);
    font-size: 14px;
}

/* Proof strip */

.mtc-proof-strip {
    position: relative;
    z-index: 5;
    margin-top: -38px;
}

.mtc-proof-strip__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--mtc-line);
    border-radius: var(--mtc-radius);
    overflow: hidden;
    background: var(--mtc-white);
    box-shadow: var(--mtc-shadow);
}

.mtc-proof {
    position: relative;
    min-height: 126px;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--mtc-line);
}

.mtc-proof:last-child {
    border-right: 0;
}

.mtc-proof strong {
    color: var(--mtc-ink);
    font-family: var(--mtc-display);
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 950;
    letter-spacing: -0.045em;
    line-height: 1;
}

.mtc-proof strong em {
    color: var(--mtc-blue-deep);
    font-style: normal;
}

.mtc-proof span {
    margin-top: 10px;
    color: var(--mtc-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.1px;
    line-height: 1.35;
    text-transform: uppercase;
}

/* Editorial splits and media */

.mtc-split {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(48px, 7vw, 104px);
}

.mtc-split--reverse .mtc-split__media {
    order: 2;
}

.mtc-split--reverse .mtc-split__content {
    order: 1;
}

.mtc-split__content {
    max-width: 620px;
}

[data-mtc-page="accueil"] .mtc-section-grid .mtc-split {
    align-items: start;
}

[data-mtc-page="accueil"] .mtc-section-grid .mtc-split__content {
    padding-top: 24px;
}

.mtc-split__content > :last-child {
    margin-bottom: 0;
}

.mtc-copy {
    color: var(--mtc-muted);
    font-size: 17px;
    line-height: 1.75;
}

.mtc-copy strong {
    color: var(--mtc-ink);
}

.mtc-section--dark .mtc-copy,
.mtc-section--dark .mtc-copy strong {
    color: rgba(255, 255, 255, 0.76);
}

.mtc-media-frame {
    position: relative;
    min-height: 620px;
}

.mtc-media-frame__main {
    position: absolute;
    inset: 0 10% 0 0;
    overflow: hidden;
    border-radius: var(--mtc-radius-lg);
    background: var(--mtc-ink-3);
    box-shadow: var(--mtc-shadow);
}

.mtc-media-frame__main::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: inherit;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.54));
}

.mtc-media-frame__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mtc-media-frame__detail {
    position: absolute;
    right: 0;
    bottom: 42px;
    z-index: 2;
    width: 42%;
    aspect-ratio: 0.82;
    overflow: hidden;
    border: 9px solid var(--mtc-white);
    border-radius: 28px;
    background: var(--mtc-ink-2);
    box-shadow: var(--mtc-shadow);
}

.mtc-section--dark .mtc-media-frame__detail {
    border-color: var(--mtc-ink);
}

.mtc-media-frame__detail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mtc-media-frame__label {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 3;
    max-width: 230px;
    padding: 14px 17px;
    border-radius: 14px;
    background: var(--mtc-blue);
    color: var(--mtc-ink);
    font-family: var(--mtc-display);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 1.1px;
    line-height: 1.35;
    text-transform: uppercase;
}

.mtc-photo-band {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 18px;
}

.mtc-photo-band figure {
    position: relative;
    min-height: 520px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--mtc-radius);
    background: var(--mtc-ink-3);
}

.mtc-photo-band figure:last-child {
    min-height: 420px;
    align-self: end;
}

.mtc-photo-band img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cards */

.mtc-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.mtc-card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mtc-card-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mtc-card {
    position: relative;
    min-height: 300px;
    padding: clamp(26px, 3vw, 38px);
    border: 1px solid var(--mtc-line);
    border-radius: var(--mtc-radius);
    display: flex;
    flex-direction: column;
    background: var(--mtc-white);
    transition:
        transform 0.5s var(--mtc-ease),
        border-color 0.5s var(--mtc-ease),
        box-shadow 0.5s var(--mtc-ease),
        background-color 0.5s var(--mtc-ease);
}

.mtc-card:hover {
    transform: translateY(-9px);
    border-color: rgba(0, 160, 215, 0.48);
    box-shadow: 0 26px 70px rgba(4, 25, 34, 0.14);
}

.mtc-section--dark .mtc-card {
    border-color: var(--mtc-line-dark);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
    backdrop-filter: blur(10px);
}

.mtc-section--dark .mtc-card:hover {
    border-color: rgba(0, 200, 255, 0.5);
    background:
        linear-gradient(145deg, rgba(0, 200, 255, 0.12), rgba(255, 255, 255, 0.035));
    box-shadow: 0 30px 76px rgba(0, 0, 0, 0.3);
}

.mtc-card__number {
    margin-bottom: 22px;
    color: var(--mtc-blue-deep);
    font-family: var(--mtc-display);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 1.5px;
}

.mtc-section--dark .mtc-card__number {
    color: var(--mtc-blue);
}

.mtc-card__icon {
    position: relative;
    width: 58px;
    height: 58px;
    margin-bottom: auto;
    border: 1px solid rgba(0, 151, 215, 0.18);
    border-radius: 18px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.94), transparent 40%),
        linear-gradient(145deg, #e9fbff, #c9f4ff);
    color: var(--mtc-blue-deep);
    box-shadow:
        0 14px 34px rgba(0, 151, 215, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition:
        transform 0.55s var(--mtc-ease),
        box-shadow 0.55s var(--mtc-ease),
        color 0.55s var(--mtc-ease);
}

.mtc-card__icon::after {
    content: "";
    position: absolute;
    inset: -55%;
    background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.72), transparent 65%);
    transform: translateX(-80%) rotate(15deg);
    transition: transform 0.7s var(--mtc-ease);
}

.mtc-card__icon svg {
    position: relative;
    z-index: 1;
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.mtc-card:hover .mtc-card__icon {
    color: #005f80;
    transform: translateY(-2px) rotate(-2deg);
    box-shadow:
        0 18px 40px rgba(0, 151, 215, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.mtc-card:hover .mtc-card__icon::after {
    transform: translateX(82%) rotate(15deg);
}

.mtc-section--dark .mtc-card__icon {
    border-color: rgba(0, 200, 255, 0.24);
    background:
        radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.18), transparent 38%),
        linear-gradient(145deg, rgba(0, 200, 255, 0.22), rgba(0, 200, 255, 0.07));
    color: var(--mtc-blue);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
}

.mtc-card h3 {
    margin: 30px 0 13px;
    font-size: clamp(22px, 2vw, 29px);
    font-weight: 950;
    letter-spacing: -0.035em;
    line-height: 1.05;
}

.mtc-card p {
    margin-bottom: 0;
    color: var(--mtc-muted);
    font-size: 14px;
    line-height: 1.65;
}

.mtc-section--dark .mtc-card p {
    color: rgba(255, 255, 255, 0.68);
}

.mtc-card--link {
    color: inherit;
    text-decoration: none;
}

.mtc-card--link::after {
    content: "→";
    position: absolute;
    right: 28px;
    bottom: 25px;
    color: var(--mtc-blue-deep);
    font-size: 21px;
    transition: transform 0.4s var(--mtc-ease);
}

.mtc-card--link:hover::after {
    transform: translate(4px, -4px);
}

/* Steps */

.mtc-steps {
    counter-reset: mtc-step;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.mtc-steps--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mtc-step {
    counter-increment: mtc-step;
    position: relative;
    min-height: 340px;
    padding: 32px;
    border-top: 1px solid var(--mtc-line);
    background: linear-gradient(180deg, rgba(0, 200, 255, 0.06), transparent 42%);
}

.mtc-step::before {
    content: "0" counter(mtc-step);
    display: block;
    margin-bottom: 78px;
    color: var(--mtc-blue-deep);
    font-family: var(--mtc-display);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 1.4px;
}

.mtc-step::after {
    content: "";
    position: absolute;
    top: -3px;
    left: 32px;
    width: 78px;
    height: 5px;
    border-radius: 999px;
    background: var(--mtc-blue);
    box-shadow: 0 0 22px rgba(0, 200, 255, 0.34);
}

.mtc-step h3 {
    margin-bottom: 13px;
    font-size: 25px;
    font-weight: 950;
    letter-spacing: -0.035em;
    line-height: 1.06;
}

.mtc-step p {
    margin-bottom: 0;
    color: var(--mtc-muted);
    font-size: 14px;
}

.mtc-section--dark .mtc-step {
    border-color: var(--mtc-line-dark);
    background: linear-gradient(180deg, rgba(0, 200, 255, 0.09), transparent 42%);
}

.mtc-section--dark .mtc-step p {
    color: rgba(255, 255, 255, 0.68);
}

/* Lists and callouts */

.mtc-checks {
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 15px;
}

.mtc-checks li {
    position: relative;
    padding-left: 35px;
    color: var(--mtc-muted);
}

.mtc-checks li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--mtc-blue-soft);
    color: var(--mtc-blue-deep);
    font-size: 13px;
    font-weight: 950;
}

.mtc-section--dark .mtc-checks li {
    color: rgba(255, 255, 255, 0.72);
}

.mtc-callout {
    position: relative;
    padding: clamp(32px, 5vw, 62px);
    border-radius: var(--mtc-radius-lg);
    overflow: hidden;
    background:
        radial-gradient(circle at 100% 0%, rgba(0, 200, 255, 0.2), transparent 32%),
        var(--mtc-ink);
    color: var(--mtc-white);
    box-shadow: var(--mtc-shadow-dark);
}

.mtc-callout::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -20px;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(0, 200, 255, 0.24);
    border-radius: 50%;
}

.mtc-callout__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
    align-items: center;
    gap: 48px;
}

.mtc-callout h2 {
    margin-bottom: 18px;
    font-family: var(--mtc-display);
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 950;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.mtc-callout p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
}

.mtc-callout .mtc-actions {
    justify-content: flex-end;
    margin-top: 0;
}

.mtc-safety {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    align-items: stretch;
    gap: 24px;
}

.mtc-safety__intro {
    min-width: 0;
    padding: clamp(34px, 3.5vw, 48px);
    border-radius: var(--mtc-radius);
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: var(--mtc-blue);
}

.mtc-safety__intro h2 {
    max-width: 100%;
    margin-bottom: 18px;
    font-family: var(--mtc-display);
    font-size: clamp(34px, 3vw, 47px);
    font-weight: 950;
    letter-spacing: -0.05em;
    line-height: 0.98;
    text-wrap: balance;
}

.mtc-safety__intro p {
    margin-bottom: 0;
    color: rgba(0, 0, 0, 0.72);
}

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

.mtc-safety__item {
    position: relative;
    min-height: 230px;
    padding: 28px;
    border: 1px solid var(--mtc-line);
    border-radius: var(--mtc-radius-sm);
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    background: var(--mtc-white);
    overflow: hidden;
    transition:
        transform 0.5s var(--mtc-ease),
        border-color 0.5s var(--mtc-ease),
        box-shadow 0.5s var(--mtc-ease);
}

.mtc-safety__item::after {
    content: "";
    position: absolute;
    right: -54px;
    bottom: -58px;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(0, 160, 215, 0.11);
    border-radius: 50%;
    pointer-events: none;
}

.mtc-safety__item:hover {
    z-index: 1;
    border-color: rgba(0, 160, 215, 0.38);
    box-shadow: 0 24px 60px rgba(4, 25, 34, 0.11);
    transform: translateY(-6px);
}

.mtc-safety__icon {
    position: relative;
    width: 50px;
    height: 50px;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 151, 215, 0.2);
    border-radius: 16px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.98), transparent 42%),
        linear-gradient(145deg, #e9fbff, #c7f3ff);
    color: var(--mtc-blue-deep);
    box-shadow:
        0 13px 30px rgba(0, 151, 215, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition:
        transform 0.5s var(--mtc-ease),
        box-shadow 0.5s var(--mtc-ease);
}

.mtc-safety__icon::after {
    content: "";
    position: absolute;
    inset: -58%;
    background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.78), transparent 65%);
    transform: translateX(-82%) rotate(16deg);
    transition: transform 0.7s var(--mtc-ease);
}

.mtc-safety__icon svg {
    position: relative;
    z-index: 1;
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.mtc-safety__item:hover .mtc-safety__icon {
    transform: translateY(-2px) rotate(-2deg);
    box-shadow:
        0 18px 38px rgba(0, 151, 215, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.mtc-safety__item:hover .mtc-safety__icon::after {
    transform: translateX(82%) rotate(16deg);
}

.mtc-safety__item strong {
    display: block;
    margin-bottom: 8px;
    font-family: var(--mtc-display);
    font-size: 18px;
}

.mtc-safety__item p {
    margin-bottom: 0;
    color: var(--mtc-muted);
    font-size: 13px;
}

/* Testimonials */

.mtc-testimonials {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.mtc-testimonial {
    min-height: 360px;
    padding: 34px;
    border: 1px solid var(--mtc-line);
    border-radius: var(--mtc-radius);
    display: flex;
    flex-direction: column;
    background: var(--mtc-white);
}

.mtc-testimonial__stars {
    color: #f5b700;
    letter-spacing: 3px;
}

.mtc-testimonial blockquote {
    margin: 42px 0 34px;
    color: var(--mtc-ink);
    font-family: var(--mtc-display);
    font-size: clamp(19px, 1.8vw, 24px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.45;
}

.mtc-testimonial footer {
    margin-top: auto;
    color: var(--mtc-muted);
    font-size: 12px;
    line-height: 1.4;
}

.mtc-testimonial footer strong {
    display: block;
    color: var(--mtc-ink);
    font-family: var(--mtc-display);
    font-size: 14px;
}

/* Google reviews carousel */

.mtc-reviews-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 10%, rgba(0, 200, 255, 0.16), transparent 30%),
        radial-gradient(circle at 86% 78%, rgba(0, 200, 255, 0.09), transparent 32%),
        #030405;
    color: var(--mtc-white);
}

.mtc-reviews-section::before {
    content: "";
    position: absolute;
    top: 12%;
    right: -140px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(0, 200, 255, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.mtc-reviews-heading {
    max-width: 900px;
    margin: 0 auto clamp(38px, 5vw, 64px);
    text-align: center;
}

.mtc-reviews-heading .mtc-kicker {
    justify-content: center;
}

.mtc-reviews-heading .mtc-title,
.mtc-reviews-heading .mtc-lead {
    margin-inline: auto;
}

.mtc-reviews-heading .mtc-lead {
    color: rgba(255, 255, 255, 0.68);
}

.mtc-reviews-summary {
    min-height: 84px;
    margin-bottom: 48px;
    padding: 18px clamp(22px, 3vw, 38px);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 3vw, 40px);
    background:
        linear-gradient(110deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.mtc-google-word {
    display: inline-flex;
    font-family: Arial, sans-serif;
    font-size: 27px;
    font-weight: 800;
    letter-spacing: -1.7px;
}

.mtc-google-word i {
    font-style: normal;
}

.mtc-google-word i:nth-child(1),
.mtc-google-word i:nth-child(4) {
    color: #4285f4;
}

.mtc-google-word i:nth-child(2),
.mtc-google-word i:nth-child(6) {
    color: #ea4335;
}

.mtc-google-word i:nth-child(3) {
    color: #fbbc05;
}

.mtc-google-word i:nth-child(5) {
    color: #34a853;
}

.mtc-reviews-stars,
.mtc-review-stars {
    color: #fbbc05;
    letter-spacing: 3px;
    text-shadow: 0 0 18px rgba(251, 188, 5, 0.18);
}

.mtc-reviews-stars {
    font-size: 22px;
}

.mtc-reviews-score {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 750;
}

.mtc-reviews-score strong {
    margin-right: 8px;
    color: var(--mtc-white);
    font-family: var(--mtc-display);
    font-size: 24px;
    font-weight: 950;
}

.mtc-reviews-trust {
    padding: 11px 18px;
    border: 1px solid rgba(52, 168, 83, 0.34);
    border-radius: 999px;
    background: rgba(20, 137, 75, 0.88);
    color: var(--mtc-white);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.35px;
}

.mtc-reviews-carousel {
    position: relative;
}

.mtc-reviews-viewport {
    width: 100%;
    padding: 38px 2px 6px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 2px;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    cursor: grab;
}

.mtc-reviews-viewport:active {
    cursor: grabbing;
}

.mtc-reviews-viewport::-webkit-scrollbar {
    display: none;
}

.mtc-reviews-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 36px) / 3);
    align-items: stretch;
    gap: 18px;
}

.mtc-review-slide {
    position: relative;
    min-height: 405px;
    padding: 56px 30px 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    background:
        radial-gradient(circle at 100% 100%, rgba(0, 200, 255, 0.08), transparent 34%),
        linear-gradient(145deg, #202327, #141618);
    box-shadow:
        0 22px 52px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.055);
    transition:
        transform 0.45s var(--mtc-ease),
        border-color 0.45s ease,
        background-color 0.45s ease;
}

.mtc-review-slide::after {
    content: "";
    position: absolute;
    right: -54px;
    bottom: -54px;
    width: 128px;
    height: 128px;
    border: 1px solid rgba(0, 200, 255, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.mtc-review-slide:hover {
    border-color: rgba(0, 200, 255, 0.4);
    transform: translateY(-5px);
}

.mtc-review-avatar {
    position: absolute;
    top: -37px;
    left: 28px;
    width: 74px;
    height: 74px;
    border: 4px solid #050607;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--mtc-white);
    font-family: var(--mtc-display);
    font-size: 22px;
    font-weight: 950;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34);
}

.mtc-review-avatar span {
    position: absolute;
    right: -7px;
    bottom: -5px;
    width: 27px;
    height: 27px;
    border: 3px solid #17191c;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--mtc-white);
    color: #4285f4;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 900;
}

.mtc-review-avatar--green {
    background: #16a34a;
}

.mtc-review-avatar--red {
    background: #ef4444;
}

.mtc-review-avatar--gold {
    background: #f2ad13;
}

.mtc-review-avatar--blue {
    background: #008fc2;
}

.mtc-review-avatar--violet {
    background: #7c4ee8;
}

.mtc-review-avatar--orange {
    background: #e86d1f;
}

.mtc-review-slide h3 {
    margin: 0 0 3px;
    color: var(--mtc-white);
    font-family: var(--mtc-display);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.mtc-review-date {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 11px;
}

.mtc-review-stars {
    margin-bottom: 22px;
    font-size: 17px;
}

.mtc-review-stars span {
    width: 20px;
    height: 20px;
    margin-left: 4px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: var(--mtc-blue);
    color: #05212a;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0;
    text-shadow: none;
    vertical-align: 2px;
}

.mtc-review-slide blockquote {
    margin: 0 0 26px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 560;
    line-height: 1.7;
}

.mtc-review-slide > a {
    position: relative;
    z-index: 1;
    margin-top: auto;
    color: var(--mtc-blue);
    font-family: var(--mtc-display);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 1.2px;
    text-decoration: none;
    text-transform: uppercase;
}

.mtc-review-slide > a::after {
    content: " ↗";
}

.mtc-reviews-controls {
    margin-top: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.mtc-page .mtc-reviews-controls button {
    width: 46px;
    height: 46px;
    padding: 0 !important;
    border: 1px solid rgba(0, 200, 255, 0.28) !important;
    border-radius: 50% !important;
    display: grid;
    place-items: center;
    background: rgba(0, 200, 255, 0.07) !important;
    color: var(--mtc-blue) !important;
    font-size: 20px;
    line-height: 1;
    box-shadow: none !important;
    cursor: pointer;
    transition:
        transform 0.35s var(--mtc-ease),
        border-color 0.35s ease,
        background-color 0.35s ease;
}

.mtc-page .mtc-reviews-controls button:hover,
.mtc-page .mtc-reviews-controls button:focus-visible {
    border-color: var(--mtc-blue) !important;
    background: rgba(0, 200, 255, 0.16) !important;
    color: var(--mtc-white) !important;
    transform: translateY(-2px);
}

.mtc-reviews-pagination {
    min-width: 92px;
    display: flex;
    justify-content: center;
    gap: 7px;
}

.mtc-reviews-pagination span {
    width: 6px;
    height: 6px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.28);
    transition:
        width 0.35s var(--mtc-ease),
        background-color 0.35s ease;
}

.mtc-reviews-pagination span.is-active {
    width: 24px;
    background: var(--mtc-blue);
}

.mtc-reviews-action {
    margin-top: 34px;
    display: flex;
    justify-content: center;
}

/* Home news */

.mtc-home-news-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 84% 14%, rgba(0, 200, 255, 0.1), transparent 28%),
        var(--mtc-white);
}

.mtc-home-news__status {
    margin-bottom: 18px;
}

.mtc-article-card--skeleton {
    min-height: 490px;
    border: 1px solid var(--mtc-line);
    border-radius: var(--mtc-radius);
    overflow: hidden;
    background:
        linear-gradient(
            105deg,
            rgba(230, 235, 238, 0.72) 28%,
            rgba(247, 249, 250, 0.98) 42%,
            rgba(230, 235, 238, 0.72) 58%
        );
    background-size: 230% 100%;
    animation: mtc-news-skeleton 1.35s linear infinite;
}

@keyframes mtc-news-skeleton {
    to {
        background-position-x: -230%;
    }
}

/* Centres */

.mtc-centres-panel,
[data-myotec-centres-component] {
    position: relative;
    padding: clamp(26px, 4vw, 48px);
    border: 1px solid var(--mtc-line);
    border-radius: var(--mtc-radius-lg);
    background: var(--mtc-white);
    box-shadow: var(--mtc-shadow);
}

.myotec-centres-component--home.mtc-centres-panel {
    padding: clamp(16px, 2vw, 24px);
    border-color: rgba(255, 255, 255, 0.13);
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 0%, rgba(0, 200, 255, 0.16), transparent 30%),
        linear-gradient(145deg, #050708, #101519);
    box-shadow:
        0 38px 100px rgba(8, 25, 34, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mtc-centres-panel__head {
    padding: 6px 6px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    color: var(--mtc-white);
}

.mtc-centres-panel__identity {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mtc-centres-panel__mark {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(0, 200, 255, 0.32);
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(0, 200, 255, 0.1);
    color: var(--mtc-blue);
    box-shadow: inset 0 0 24px rgba(0, 200, 255, 0.08);
}

.mtc-centres-panel__mark svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.mtc-centres-panel__identity p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    line-height: 1.45;
}

.mtc-centres-panel__identity strong {
    display: block;
    color: var(--mtc-white);
    font-family: var(--mtc-display);
    font-size: 17px;
    letter-spacing: -0.02em;
}

.mtc-centres-panel__status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.mtc-centres-panel__status::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mtc-blue);
    box-shadow: 0 0 0 5px rgba(0, 200, 255, 0.1), 0 0 18px var(--mtc-blue);
}

.mtc-centres-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    margin-bottom: 26px;
}

.myotec-centres-component--home .mtc-centres-toolbar {
    margin-bottom: 18px;
    grid-template-columns: minmax(0, 1fr) auto;
}

.mtc-search {
    position: relative;
}

.myotec-centres-component--home .mtc-search::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 20px;
    z-index: 2;
    width: 17px;
    height: 17px;
    border: 2px solid var(--mtc-blue);
    border-radius: 50%;
    transform: translateY(-58%);
    pointer-events: none;
}

.myotec-centres-component--home .mtc-search::after {
    content: "";
    position: absolute;
    top: calc(50% + 6px);
    left: 34px;
    z-index: 2;
    width: 7px;
    height: 2px;
    border-radius: 99px;
    background: var(--mtc-blue);
    transform: rotate(45deg);
    pointer-events: none;
}

.mtc-search input,
.mtc-news-search input {
    width: 100%;
    min-height: 58px;
    padding: 0 22px;
    border: 1px solid var(--mtc-line);
    border-radius: 999px;
    background: var(--mtc-paper);
    color: var(--mtc-ink);
}

.mtc-search input::placeholder,
.mtc-news-search input::placeholder {
    color: #7a838c;
}

.myotec-centres-component--home .mtc-search input {
    min-height: 60px;
    padding-left: 52px;
    border-color: rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.07);
    color: var(--mtc-white);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
    transition:
        border-color 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

.myotec-centres-component--home .mtc-search input::placeholder {
    color: rgba(255, 255, 255, 0.48);
}

.myotec-centres-component--home .mtc-search input:focus {
    border-color: rgba(0, 200, 255, 0.66);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(0, 200, 255, 0.09);
}

.myotec-centres-component--home .mtc-button--ghost-dark {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.06);
    color: var(--mtc-white) !important;
}

.myotec-centres-component--home .mtc-button--ghost-dark:hover {
    border-color: rgba(0, 200, 255, 0.58);
    background: rgba(0, 200, 255, 0.1);
}

.mtc-centres-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.62fr);
    gap: 20px;
}

.myotec-centres-component--home .mtc-centres-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.68fr);
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 26px;
    overflow: hidden;
    background: #080b0d;
}

[data-myotec-centres-map],
#centers-map {
    min-height: 530px;
    border-radius: var(--mtc-radius);
    overflow: hidden;
    background:
        radial-gradient(circle, rgba(0, 200, 255, 0.18), transparent 40%),
        #e8edf0;
}

.myotec-centres-component--home [data-myotec-centres-map] {
    min-height: 540px;
    border-radius: 0;
}

.myotec-centres-component--home [data-myotec-centres-list] {
    max-height: 540px;
    padding: 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.11);
    background:
        radial-gradient(circle at 95% 0%, rgba(0, 200, 255, 0.11), transparent 32%),
        #080b0d;
    scrollbar-color: var(--mtc-blue) rgba(255, 255, 255, 0.04);
}

.myotec-centres-component--home .myotec-centres-item {
    min-height: 70px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
}

[data-myotec-centres-list],
#center-list {
    max-height: 530px;
    overflow: auto;
    display: grid;
    gap: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--mtc-blue-deep) transparent;
}

.myotec-centre-card,
.center-card {
    padding: 17px 18px;
    border: 1px solid var(--mtc-line);
    border-radius: 17px;
    background: var(--mtc-white);
}

.myotec-centre-card a,
.center-card a {
    text-decoration: none;
}

/* Annuaire premium de la page Nos centres */

.mtc-hero--centres {
    min-height: 510px;
    padding-top: 106px;
    padding-bottom: 66px;
}

.mtc-hero--centres::after {
    display: none;
}

.mtc-hero--centres .mtc-hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.62fr);
    gap: clamp(38px, 4.5vw, 66px);
}

.mtc-hero--centres .mtc-hero__content {
    max-width: 700px;
}

.mtc-hero--centres .mtc-display {
    max-width: 680px;
    margin-bottom: 16px;
    font-size: clamp(39px, 3.55vw, 58px);
}

.mtc-hero--centres .mtc-lead {
    max-width: 650px;
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.55;
}

.mtc-hero--centres .mtc-actions {
    margin-top: 24px;
}

.mtc-hero--centres .mtc-button {
    min-height: 52px;
}

.mtc-hero--centres .mtc-hero__visual {
    width: min(100%, 430px);
}

.mtc-hero--centres .mtc-hero__frame,
.mtc-hero--centres .mtc-hero__frame img {
    height: 342px;
    min-height: 0;
}

.mtc-hero--centres .mtc-hero__frame {
    border-radius: 116px 25px 25px 25px;
}

.mtc-hero--centres .mtc-hero__index {
    left: -26px;
    bottom: 28px;
    width: 108px;
    height: 108px;
    padding: 12px;
}

.mtc-hero--centres .mtc-hero__index strong {
    font-size: 24px;
}

.mtc-hero--centres .mtc-hero__index span {
    margin-top: 5px;
    font-size: 8px;
}

.mtc-hero--centres .mtc-hero__note {
    top: 24px;
    right: -14px;
    max-width: 192px;
    padding: 13px 15px;
    font-size: 10px;
}

.mtc-hero--centres .mtc-hero__note strong {
    font-size: 12px;
}

.mtc-centres-directory-section {
    overflow: hidden;
    padding-top: clamp(26px, 3vw, 42px);
}

.mtc-centres-directory {
    padding: clamp(18px, 2.4vw, 30px);
    border-color: rgba(255, 255, 255, 0.12);
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 0%, rgba(0, 200, 255, 0.17), transparent 28%),
        linear-gradient(145deg, #050708, #11171b);
    color: var(--mtc-white);
    box-shadow:
        0 38px 100px rgba(8, 25, 34, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.075);
}

.mtc-centres-directory__bar {
    padding: 3px 4px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.mtc-centres-directory__identity {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.mtc-centres-directory__identity > span:last-child {
    min-width: 0;
}

.mtc-centres-directory__identity h2,
.mtc-centres-directory__identity small {
    display: block;
}

.mtc-centres-directory__identity h2 {
    margin: 0;
    color: var(--mtc-white);
    font-family: var(--mtc-display);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.mtc-centres-directory__identity small {
    margin-top: 3px;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.56);
    font-size: 11px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mtc-centres-directory__mark {
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    border: 1px solid rgba(0, 200, 255, 0.3);
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(0, 200, 255, 0.1);
    color: var(--mtc-blue);
    box-shadow:
        inset 0 0 24px rgba(0, 200, 255, 0.08),
        0 14px 28px rgba(0, 0, 0, 0.18);
}

.mtc-centres-directory__mark svg,
.mtc-centres-directory__search-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.mtc-centres-directory__status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 1.15px;
    text-transform: uppercase;
}

.mtc-centres-directory__status::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mtc-blue);
    box-shadow:
        0 0 0 5px rgba(0, 200, 255, 0.1),
        0 0 18px var(--mtc-blue);
}

.mtc-centres-directory .myotec-centres-toolbar {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
}

.mtc-centres-directory .myotec-centres-search {
    position: relative;
    width: 100%;
    max-width: none;
}

.mtc-centres-directory .screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.mtc-centres-directory__search-icon {
    position: absolute;
    top: 50%;
    left: 20px;
    z-index: 2;
    color: var(--mtc-blue);
    pointer-events: none;
    transform: translateY(-50%);
}

.mtc-centres-directory__search-icon svg {
    width: 19px;
    height: 19px;
}

.mtc-centres-directory .myotec-centres-search input {
    min-height: 62px;
    padding: 0 22px 0 54px;
    border-color: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: var(--mtc-white);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition:
        border-color 0.35s ease,
        background-color 0.35s ease,
        box-shadow 0.35s ease;
}

.mtc-centres-directory .myotec-centres-search input::placeholder {
    color: rgba(255, 255, 255, 0.46);
}

.mtc-centres-directory .myotec-centres-search input:focus-visible {
    border-color: rgba(0, 200, 255, 0.68);
    outline: 0;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(0, 200, 255, 0.1);
}

.mtc-centres-directory .myotec-centres-total {
    min-height: 62px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.055);
}

.mtc-centres-directory .myotec-centres-total strong {
    color: var(--mtc-blue);
    font-family: var(--mtc-display);
    font-size: 27px;
    line-height: 1;
}

.mtc-centres-directory .myotec-centres-total span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 9px;
    letter-spacing: 1px;
}

.mtc-centres-directory .myotec-centres-layout {
    min-height: 820px;
    grid-template-columns: minmax(0, 1fr) minmax(410px, 0.5fr);
    border-color: rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    overflow: hidden;
    background: #080b0d;
}

.mtc-centres-directory .myotec-centres-map {
    min-height: 820px;
}

.mtc-centres-directory .myotec-centres-map .leaflet-tile-pane {
    filter: saturate(0.72) contrast(1.03) brightness(1.02);
}

.mtc-centres-directory .myotec-centres-list {
    max-height: 820px;
    padding: 15px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    border-color: rgba(255, 255, 255, 0.11);
    background:
        radial-gradient(circle at 96% 0%, rgba(0, 200, 255, 0.13), transparent 30%),
        #080b0d;
    scrollbar-color: var(--mtc-blue) rgba(255, 255, 255, 0.04);
}

.mtc-centres-directory .myotec-centres-card {
    border-color: rgba(255, 255, 255, 0.105);
    border-radius: 21px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.mtc-centres-directory .myotec-centres-card:hover,
.mtc-centres-directory .myotec-centres-card:focus-visible,
.mtc-centres-directory .myotec-centres-card.is-active {
    border-color: rgba(0, 200, 255, 0.65);
    background: rgba(0, 200, 255, 0.075);
    box-shadow:
        0 24px 54px rgba(0, 0, 0, 0.32),
        0 0 34px rgba(0, 200, 255, 0.095);
}

.mtc-centres-directory .myotec-centres-card__media {
    height: 112px;
}

.mtc-centres-directory .myotec-centres-card__media img {
    filter: saturate(0.94) contrast(1.035);
}

.mtc-centres-directory .myotec-centres-card__status {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--mtc-display);
}

.mtc-centres-directory .myotec-centres-card__body {
    padding: 16px;
}

.mtc-centres-directory .myotec-centres-card__heading strong {
    color: var(--mtc-white);
    font-family: var(--mtc-display);
    font-size: 17px;
    letter-spacing: -0.025em;
}

.mtc-centres-directory .myotec-centres-card__heading small,
.mtc-centres-directory .myotec-centres-card__detail-icon {
    color: var(--mtc-blue);
}

.mtc-centres-directory .myotec-centres-card__details {
    min-height: 92px;
}

.mtc-centres-directory .myotec-centres-card__address,
.mtc-centres-directory .myotec-centres-card__contact {
    color: rgba(255, 255, 255, 0.68);
}

.mtc-centres-directory .myotec-centres-card__contact:hover {
    color: var(--mtc-blue);
}

.mtc-centres-directory .myotec-centres-card__button {
    font-family: var(--mtc-display);
}

.mtc-centres-directory .myotec-centres-card__button--primary {
    border-color: var(--mtc-blue);
    background: var(--mtc-blue);
    color: var(--mtc-ink);
    box-shadow: 0 10px 24px rgba(0, 200, 255, 0.15);
}

.mtc-centres-directory .myotec-centres-card__button--secondary:hover {
    border-color: var(--mtc-blue);
    background: rgba(0, 200, 255, 0.09);
    color: var(--mtc-blue);
}

.mtc-centres-directory .myotec-centres-item {
    min-height: 76px;
    padding: 14px 16px;
    border-color: rgba(255, 255, 255, 0.1);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.045);
}

.mtc-centres-directory .myotec-centres-item:hover,
.mtc-centres-directory .myotec-centres-item:focus-visible {
    border-color: rgba(0, 200, 255, 0.58);
    background: rgba(0, 200, 255, 0.095);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    transform: translateX(4px);
}

.mtc-centres-directory .myotec-centres-item__text strong {
    color: var(--mtc-white);
    font-family: var(--mtc-display);
    font-size: 15px;
    letter-spacing: -0.015em;
}

.mtc-centres-directory .myotec-centres-item__text small {
    color: rgba(255, 255, 255, 0.56);
}

.mtc-centres-directory .myotec-centres-item__dot {
    background: var(--mtc-blue);
    box-shadow:
        0 0 0 5px rgba(0, 200, 255, 0.08),
        0 0 17px rgba(0, 200, 255, 0.72);
}

.mtc-centres-directory .myotec-centres-item__arrow {
    color: var(--mtc-blue);
}

.mtc-centres-directory .leaflet-popup-content-wrapper {
    border: 1px solid rgba(0, 127, 168, 0.2);
    border-radius: 18px;
    box-shadow: 0 20px 55px rgba(4, 20, 27, 0.22);
}

.mtc-centres-directory .leaflet-control-attribution {
    opacity: 0.72;
}

.mtc-centres-directory__hint {
    margin: 18px 4px 1px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 11px;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .mtc-hero--centres {
        padding-top: 114px;
        padding-bottom: 78px;
    }

    .mtc-hero--centres .mtc-hero__grid {
        gap: 44px;
    }

    .mtc-hero--centres .mtc-hero__visual {
        display: none;
    }

    .mtc-centres-directory {
        padding: 20px;
    }

    .mtc-centres-directory__bar {
        align-items: flex-start;
    }

    .mtc-centres-directory .myotec-centres-toolbar {
        grid-template-columns: 1fr;
    }

    .mtc-centres-directory .myotec-centres-total {
        width: fit-content;
    }

    .mtc-centres-directory .myotec-centres-layout {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .mtc-centres-directory .myotec-centres-map {
        min-height: 500px;
    }

    .mtc-centres-directory .myotec-centres-list {
        max-height: 660px;
        border-top: 1px solid rgba(255, 255, 255, 0.11);
        border-left: 0;
    }
}

@media (max-width: 680px) {
    .mtc-hero--centres {
        padding-top: 106px;
        padding-bottom: 74px;
    }

    .mtc-hero--centres .mtc-display {
        font-size: clamp(34px, 10.5vw, 46px);
    }

    .mtc-hero--centres .mtc-actions {
        margin-top: 22px;
    }

    .mtc-centres-directory {
        padding: 14px;
        border-radius: 28px;
    }

    .mtc-centres-directory__bar {
        padding: 4px 4px 18px;
    }

    .mtc-centres-directory__status {
        display: none;
    }

    .mtc-centres-directory__identity small {
        max-width: 220px;
    }

    .mtc-centres-directory .myotec-centres-search input {
        min-height: 58px;
    }

    .mtc-centres-directory .myotec-centres-total {
        min-height: 54px;
        padding-inline: 18px;
    }

    .mtc-centres-directory .myotec-centres-map {
        min-height: 410px;
    }

    .mtc-centres-directory .myotec-centres-list {
        max-height: 620px;
        padding: 10px;
    }

    .mtc-centres-directory .myotec-centres-card__actions {
        grid-template-columns: 1fr;
    }

    .mtc-centres-directory .myotec-centres-item {
        min-height: 72px;
        padding: 12px 13px;
    }

    .mtc-centres-directory__hint {
        margin-inline: 2px;
    }
}

/* Media and authority */

.mtc-authority {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 58px;
    align-items: center;
}

.mtc-award {
    position: relative;
    aspect-ratio: 4 / 3;
    min-height: 0;
    overflow: hidden;
    border-radius: var(--mtc-radius-lg);
    background: #e9eef1;
    box-shadow: var(--mtc-shadow);
}

.mtc-award img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 32%;
    --mtc-image-scale: 1.01;
    transition: transform 1s var(--mtc-ease);
}

.mtc-award::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 54%, rgba(0, 0, 0, 0.58)),
        linear-gradient(90deg, rgba(0, 200, 255, 0.08), transparent 38%);
}

.mtc-award:hover img {
    --mtc-image-scale: 1.06;
}

.mtc-award__badge {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    width: 122px;
    height: 122px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--mtc-blue);
    color: var(--mtc-ink);
    font-family: var(--mtc-display);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 1.2px;
    text-align: center;
    text-transform: uppercase;
}

.mtc-logo-wall {
    position: relative;
    margin-top: 52px;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.mtc-logo-wall::before,
.mtc-logo-wall::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 64px;
    pointer-events: none;
}

.mtc-logo-wall::before {
    left: 0;
    background: linear-gradient(90deg, var(--mtc-paper), transparent);
}

.mtc-logo-wall::after {
    right: 0;
    background: linear-gradient(-90deg, var(--mtc-paper), transparent);
}

.mtc-logo-wall__track {
    width: max-content;
    display: flex;
    gap: 12px;
    will-change: transform;
    animation: mtc-media-marquee 30s linear infinite;
}

.mtc-logo-wall:hover .mtc-logo-wall__track {
    animation-play-state: paused;
}

.mtc-logo {
    flex: 0 0 clamp(164px, 15vw, 210px);
    min-height: 102px;
    padding: 20px;
    border: 1px solid var(--mtc-line);
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--mtc-white);
    box-shadow: 0 12px 30px rgba(5, 24, 32, 0.06);
    transition:
        transform 0.45s var(--mtc-ease),
        border-color 0.45s var(--mtc-ease),
        box-shadow 0.45s var(--mtc-ease);
}

.mtc-logo img {
    width: auto;
    max-width: 100%;
    max-height: 46px;
    filter: grayscale(1);
    opacity: 0.68;
    transition:
        filter 0.45s ease,
        opacity 0.45s ease,
        transform 0.45s var(--mtc-ease);
}

.mtc-logo:hover {
    z-index: 1;
    border-color: rgba(0, 151, 215, 0.28);
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(5, 24, 32, 0.1);
}

.mtc-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.04);
}

@keyframes mtc-media-marquee {
    to {
        transform: translateX(calc(-50% - 6px));
    }
}

/* FAQ */

.mtc-faq-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
    gap: clamp(42px, 7vw, 100px);
}

.mtc-faq {
    border-top: 1px solid var(--mtc-line);
}

.mtc-faq__item {
    position: relative;
    border-bottom: 1px solid var(--mtc-line);
    transition:
        border-color 0.35s ease,
        background-color 0.35s ease;
}

.mtc-faq__item > h3 {
    margin: 0;
}

.mtc-faq__item.is-open {
    border-bottom-color: rgba(0, 151, 215, 0.34);
    background: linear-gradient(90deg, rgba(0, 200, 255, 0.065), transparent 75%);
}

.mtc-page .mtc-faq__trigger {
    width: 100%;
    padding: 25px 4px;
    border: 0 !important;
    border-radius: 0 !important;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    background: transparent !important;
    color: var(--mtc-ink) !important;
    text-align: left;
    cursor: pointer;
    box-shadow: none !important;
    transform: none !important;
    transition:
        color 0.32s ease,
        padding 0.32s var(--mtc-ease);
}

.mtc-page .mtc-faq__trigger:hover,
.mtc-page .mtc-faq__trigger:focus,
.mtc-page .mtc-faq__trigger:focus-visible,
.mtc-page .mtc-faq__trigger[aria-expanded="true"] {
    border: 0 !important;
    background: transparent !important;
    color: var(--mtc-blue-deep) !important;
    box-shadow: none !important;
    transform: none !important;
}

.mtc-page .mtc-faq__trigger:hover {
    padding-left: 10px;
}

.mtc-faq__trigger span:first-child {
    font-family: var(--mtc-display);
    font-size: clamp(18px, 1.65vw, 23px);
    font-weight: 850;
    letter-spacing: -0.025em;
}

.mtc-faq__icon {
    position: relative;
    width: 36px;
    height: 36px;
    border: 1px solid var(--mtc-line);
    border-radius: 50%;
    flex: 0 0 auto;
    background: rgba(0, 200, 255, 0.03);
    transition:
        border-color 0.3s ease,
        background-color 0.3s ease,
        transform 0.35s var(--mtc-ease);
}

.mtc-faq__trigger:hover .mtc-faq__icon,
.mtc-faq__trigger[aria-expanded="true"] .mtc-faq__icon {
    border-color: rgba(0, 151, 215, 0.4);
    background: rgba(0, 200, 255, 0.1);
    transform: rotate(3deg);
}

.mtc-faq__icon::before,
.mtc-faq__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    border-radius: 999px;
    background: var(--mtc-blue-deep);
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}

.mtc-faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.mtc-faq__trigger[aria-expanded="true"] .mtc-faq__icon::after {
    transform: translate(-50%, -50%) rotate(0);
}

.mtc-faq__panel {
    padding: 0 58px 26px 4px;
    color: var(--mtc-muted);
    animation: mtc-faq-panel-in 0.42s var(--mtc-ease) both;
}

.mtc-faq__trigger[aria-expanded="false"] + .mtc-faq__panel {
    display: none;
}

.mtc-faq__panel p:last-child {
    margin-bottom: 0;
}

@keyframes mtc-faq-panel-in {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Final CTA */

.mtc-final {
    position: relative;
    min-height: 700px;
    padding: clamp(110px, 14vw, 190px) 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--mtc-ink);
    color: var(--mtc-white);
}

.mtc-final::before {
    content: "";
    position: absolute;
    inset: -18px;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.84) 52%, rgba(0, 0, 0, 0.5) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.48), transparent 52%),
        var(--mtc-media-url, none);
    background-position: center;
    background-size: cover;
    transform:
        translate3d(var(--mtc-image-x, 0px), var(--mtc-image-y, 0px), 0)
        scale(1.035);
    transition: transform 1.15s var(--mtc-ease);
    will-change: transform;
}

.mtc-final::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 50%, rgba(0, 200, 255, 0.2), transparent 32%);
}

.mtc-final__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.mtc-final .mtc-title {
    max-width: 900px;
    font-size: clamp(40px, 5vw, 72px);
}

.mtc-final .mtc-kicker {
    color: var(--mtc-blue);
}

.mtc-final .mtc-lead,
.mtc-final .mtc-copy {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.86);
}

.mtc-final.mtc-image-motion:hover::before {
    transform:
        translate3d(var(--mtc-image-x, 0px), var(--mtc-image-y, 0px), 0)
        scale(1.065);
}

/* Actualités */

.mtc-news-tools {
    display: grid;
    grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    margin-bottom: 42px;
}

.mtc-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.mtc-filter {
    min-height: 42px;
    padding: 0 17px;
    border: 1px solid var(--mtc-line);
    border-radius: 999px;
    background: var(--mtc-white);
    color: var(--mtc-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    cursor: pointer;
    text-transform: uppercase;
}

.mtc-filter[aria-pressed="true"] {
    border-color: var(--mtc-ink);
    background: var(--mtc-ink);
    color: var(--mtc-white);
}

.mtc-news-status {
    margin: 0 0 24px;
    color: var(--mtc-muted);
    font-size: 13px;
}

.mtc-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.mtc-article-card {
    min-width: 0;
}

.mtc-article-card__link {
    height: 100%;
    border: 1px solid var(--mtc-line);
    border-radius: var(--mtc-radius);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--mtc-white);
    color: var(--mtc-ink);
    text-decoration: none;
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease,
        border-color 0.24s ease;
}

.mtc-article-card__link:hover {
    transform: translateY(-7px);
    border-color: rgba(0, 127, 168, 0.34);
    box-shadow: var(--mtc-shadow);
}

.mtc-article-card__media {
    aspect-ratio: 1.45;
    overflow: hidden;
    background: var(--mtc-ink-3);
}

.mtc-article-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.mtc-article-card__link:hover img {
    --mtc-image-scale: 1.06;
}

.mtc-article-card__body {
    flex: 1;
    padding: 27px;
    display: flex;
    flex-direction: column;
}

.mtc-article-card__meta {
    margin-bottom: 15px;
    color: var(--mtc-blue-deep);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mtc-article-card h2,
.mtc-article-card h3 {
    margin-bottom: 13px;
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 950;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.mtc-article-card__excerpt {
    margin-bottom: 24px;
    color: var(--mtc-muted);
    font-size: 14px;
}

.mtc-article-card__action {
    margin-top: auto;
    color: var(--mtc-ink);
    font-family: var(--mtc-display);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mtc-article-card__action::after {
    content: " →";
    color: var(--mtc-blue-deep);
}

/* Franchise */

.mtc-business-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.mtc-business-fact {
    min-height: 250px;
    padding: 34px;
    border: 1px solid var(--mtc-line-dark);
    border-radius: var(--mtc-radius);
    background: rgba(255, 255, 255, 0.055);
}

.mtc-business-fact strong {
    display: block;
    color: var(--mtc-blue);
    font-family: var(--mtc-display);
    font-size: clamp(35px, 4.3vw, 64px);
    font-weight: 950;
    letter-spacing: -0.05em;
    line-height: 1;
}

.mtc-business-fact span {
    display: block;
    margin-top: 18px;
    color: var(--mtc-white);
    font-family: var(--mtc-display);
    font-size: 17px;
    font-weight: 850;
}

.mtc-business-fact p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
}

.mtc-profile {
    position: relative;
    display: grid;
    grid-template-columns: minmax(310px, 0.68fr) minmax(0, 1fr);
    align-items: stretch;
    border-radius: var(--mtc-radius-lg);
    overflow: hidden;
    background: var(--mtc-ink);
    color: var(--mtc-white);
    box-shadow: var(--mtc-shadow-dark);
}

.mtc-profile__media {
    min-height: 600px;
    background: var(--mtc-ink-3);
}

.mtc-profile__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mtc-profile__content {
    padding: clamp(42px, 7vw, 86px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mtc-profile__content p {
    color: rgba(255, 255, 255, 0.72);
}

.mtc-profile__content .mtc-title {
    color: var(--mtc-white);
}

/* Reveal enhancement */

.mtc-page.mtc-js [data-mtc-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.72s var(--mtc-ease),
        transform 0.82s var(--mtc-ease);
    transition-delay: var(--mtc-reveal-delay, 0ms);
}

.mtc-page.mtc-js [data-mtc-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.mtc-page.mtc-js [data-mtc-reveal] .mtc-media-frame__main img,
.mtc-page.mtc-js [data-mtc-reveal] > img {
    --mtc-image-scale: 1.035;
    transition: transform 1.2s var(--mtc-ease);
}

.mtc-page.mtc-js [data-mtc-reveal].is-visible .mtc-media-frame__main img,
.mtc-page.mtc-js [data-mtc-reveal].is-visible > img {
    --mtc-image-scale: 1;
}

/* Mouvement photographique premium, appliqué à tous les visuels éditoriaux. */

.mtc-image-motion {
    --mtc-image-x: 0px;
    --mtc-image-y: 0px;
    --mtc-image-scale: 1;
}

.mtc-image-motion > img {
    transform:
        translate3d(var(--mtc-image-x), var(--mtc-image-y), 0)
        scale(var(--mtc-image-scale));
    transform-origin: center;
    transition:
        transform 0.85s var(--mtc-ease),
        filter 0.85s var(--mtc-ease);
    will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
    .mtc-image-motion:hover > img {
        --mtc-image-scale: 1.065;
        filter: saturate(1.035) contrast(1.015);
    }
}

.mtc-page.mtc-js [data-mtc-reveal].is-visible > :is(.mtc-card, .mtc-step, .mtc-testimonial) {
    animation: mtc-child-rise 0.72s var(--mtc-ease) both;
    animation-delay: calc(var(--mtc-item-index, 0) * 75ms);
}

@keyframes mtc-child-rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */

@media (max-width: 1120px) {
    .mtc-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 0.68fr);
        gap: 44px;
    }

    .mtc-hero__frame,
    .mtc-hero__frame img {
        height: 470px;
        min-height: 0;
    }

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

    .mtc-card-grid--three,
    .mtc-articles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mtc-steps--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 900px) {
    .mtc-shell {
        width: min(calc(100% - 36px), var(--mtc-shell));
    }

    .mtc-section-head,
    .mtc-split,
    .mtc-faq-layout,
    .mtc-authority,
    .mtc-safety,
    .mtc-profile {
        grid-template-columns: 1fr;
    }

    .mtc-section-head {
        align-items: start;
        gap: 22px;
    }

    .mtc-section-head .mtc-lead {
        justify-self: start;
        padding-top: 0;
    }

    .mtc-hero {
        min-height: 0;
        padding-top: 124px;
    }

    .mtc-hero__grid {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .mtc-hero__visual {
        width: min(92%, 560px);
        justify-self: center;
    }

    .mtc-hero__frame {
        border-radius: 120px 24px 24px 24px;
    }

    .myotec-centres-component--home .mtc-centres-layout {
        grid-template-columns: 1fr;
    }

    .myotec-centres-component--home [data-myotec-centres-map] {
        min-height: 440px;
    }

    .myotec-centres-component--home [data-myotec-centres-list] {
        max-height: 360px;
        border-top: 1px solid rgba(255, 255, 255, 0.11);
        border-left: 0;
    }

    .mtc-proof-strip {
        margin-top: -22px;
    }

    .mtc-proof-strip__inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .mtc-proof:nth-child(2) {
        border-right: 0;
    }

    .mtc-proof:nth-child(-n + 2) {
        border-bottom: 1px solid var(--mtc-line);
    }

    .mtc-split--reverse .mtc-split__media,
    .mtc-split--reverse .mtc-split__content {
        order: initial;
    }

    .mtc-split__content {
        max-width: none;
    }

    .mtc-media-frame {
        min-height: 590px;
    }

    .mtc-testimonials,
    .mtc-business-facts {
        grid-template-columns: 1fr;
    }

    .mtc-reviews-track {
        grid-auto-columns: calc((100% - 18px) / 2);
    }

    .mtc-reviews-summary {
        flex-wrap: wrap;
    }

    .mtc-testimonial {
        min-height: 280px;
    }

    .mtc-centres-layout,
    .mtc-callout__grid {
        grid-template-columns: 1fr;
    }

    .mtc-callout .mtc-actions {
        justify-content: flex-start;
        margin-top: 4px;
    }

    .mtc-profile__media {
        min-height: 520px;
    }
}

@media (max-width: 680px) {
    .mtc-page {
        font-size: 15px;
    }

    .mtc-shell {
        width: min(calc(100% - 28px), var(--mtc-shell));
    }

    .mtc-section {
        padding-block: 70px;
    }

    .mtc-display {
        font-size: clamp(36px, 11.5vw, 52px);
        letter-spacing: -0.055em;
        line-height: 0.98;
    }

    .mtc-title {
        font-size: clamp(32px, 9.5vw, 46px);
    }

    .mtc-kicker--electric {
        gap: 8px;
        letter-spacing: 1.65px;
    }

    .mtc-electric-bolt {
        width: 18px;
        height: 18px;
    }

    .mtc-lead {
        font-size: 17px;
    }

    .mtc-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .mtc-button {
        width: 100%;
    }

    .mtc-hero {
        padding-top: 112px;
        padding-bottom: 82px;
    }

    .mtc-hero::after {
        bottom: -110px;
    }

    .mtc-hero__frame,
    .mtc-hero__frame img {
        height: 420px;
        min-height: 0;
    }

    .mtc-hero__visual {
        width: calc(100% - 18px);
    }

    .mtc-hero__frame {
        border-radius: 88px 22px 22px 22px;
    }

    .mtc-hero__index {
        left: -14px;
        bottom: 22px;
        width: 114px;
        height: 114px;
        padding: 13px;
    }

    .mtc-hero__index strong {
        font-size: 25px;
    }

    .mtc-hero__index span {
        max-width: 86px;
        font-size: 9px;
        letter-spacing: 1px;
    }

    .mtc-hero__note {
        top: 22px;
        right: -12px;
        max-width: 176px;
    }

    .mtc-hero__formula {
        align-items: center;
        gap: 7px 10px;
    }

    .mtc-hero__formula strong {
        font-size: 25px;
    }

    .mtc-proof-strip__inner,
    .mtc-card-grid,
    .mtc-card-grid--three,
    .mtc-card-grid--two,
    .mtc-steps,
    .mtc-steps--four,
    .mtc-safety__grid,
    .mtc-articles-grid {
        grid-template-columns: 1fr;
    }

    .mtc-proof {
        min-height: 116px;
        border-right: 0;
        border-bottom: 1px solid var(--mtc-line);
    }

    .mtc-proof:last-child {
        border-bottom: 0;
    }

    .mtc-media-frame {
        min-height: 520px;
    }

    .mtc-media-frame__main {
        right: 0;
    }

    .mtc-media-frame__detail {
        right: -4px;
        bottom: -18px;
        width: 45%;
        border-width: 6px;
    }

    .mtc-photo-band {
        grid-template-columns: 1fr;
    }

    .mtc-photo-band figure,
    .mtc-photo-band figure:last-child {
        min-height: 420px;
    }

    .mtc-card {
        min-height: 260px;
    }

    .mtc-reviews-heading {
        text-align: left;
    }

    .mtc-reviews-heading .mtc-kicker {
        justify-content: flex-start;
    }

    .mtc-reviews-summary {
        padding: 22px 18px;
        justify-content: flex-start;
        gap: 13px 18px;
    }

    .mtc-google-word {
        font-size: 24px;
    }

    .mtc-reviews-stars {
        font-size: 18px;
    }

    .mtc-reviews-score {
        width: 100%;
    }

    .mtc-reviews-trust {
        padding: 9px 13px;
    }

    .mtc-reviews-track {
        grid-auto-columns: min(88%, 330px);
        gap: 14px;
    }

    .mtc-review-slide {
        min-height: 390px;
        padding: 54px 24px 26px;
    }

    .mtc-reviews-action .mtc-button {
        width: 100%;
    }

    .mtc-article-card--skeleton {
        min-height: 420px;
    }

    .mtc-step {
        min-height: 280px;
    }

    .mtc-step::before {
        margin-bottom: 50px;
    }

    .mtc-centres-panel__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .mtc-centres-panel__status {
        margin-left: 62px;
    }

    .myotec-centres-component--home .mtc-centres-toolbar {
        grid-template-columns: 1fr;
    }

    .myotec-centres-component--home [data-myotec-centres-map] {
        min-height: 390px;
    }

    .mtc-logo-wall {
        mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    }

    .mtc-news-tools {
        grid-template-columns: 1fr;
    }

    .mtc-filters {
        justify-content: flex-start;
    }

    .mtc-final {
        min-height: 640px;
    }

    .mtc-final .mtc-title {
        font-size: clamp(38px, 11vw, 52px);
    }

    .mtc-centres-toolbar {
        grid-template-columns: 1fr;
    }

    [data-myotec-centres-map],
    #centers-map {
        min-height: 420px;
    }

    .mtc-profile__media {
        min-height: 440px;
    }

    .mtc-profile__content {
        padding: 36px 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mtc-page *,
    .mtc-page *::before,
    .mtc-page *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .mtc-page.mtc-js [data-mtc-reveal] {
        opacity: 1;
        transform: none;
    }
}
