.m33-direction-page {
    --m33-ink: #17372c;
    --m33-muted: #607269;
    --m33-green: #175b43;
    --m33-green-2: #2d8060;
    --m33-lime: #bfe05a;
    --m33-soft: #f2f6f3;
    --m33-line: #dce5e0;
    color: var(--m33-ink);
    overflow: clip;
}

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

.m33-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.m33-narrow {
    max-width: 860px;
}

.m33-block {
    padding: clamp(52px, 7vw, 96px) 0;
}

.m33-block-soft {
    background: var(--m33-soft);
}

.m33-block h1,
.m33-block h2,
.m33-block h3,
.m33-block p {
    margin-top: 0;
}

.m33-block h1 {
    max-width: 800px;
    margin-bottom: 22px;
    font-size: clamp(42px, 7vw, 78px);
    line-height: .98;
    letter-spacing: -.045em;
}

.m33-block h2 {
    margin-bottom: clamp(26px, 4vw, 44px);
    font-size: clamp(30px, 4.6vw, 52px);
    line-height: 1.04;
    letter-spacing: -.035em;
}

.m33-block h3 {
    margin-bottom: 10px;
    font-size: clamp(20px, 2.1vw, 25px);
    line-height: 1.15;
}

.m33-block p,
.m33-prose li {
    color: var(--m33-muted);
    font-size: 17px;
    line-height: 1.65;
}

.m33-eyebrow {
    margin-bottom: 14px !important;
    color: var(--m33-green-2) !important;
    font-size: 12px !important;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.m33-lead {
    max-width: 650px;
    margin-bottom: 30px;
    font-size: clamp(18px, 2.2vw, 23px) !important;
}

.m33-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border: 1px solid var(--m33-green);
    border-radius: 999px;
    background: var(--m33-green);
    color: #fff !important;
    padding: 13px 23px;
    font-weight: 800;
    text-decoration: none !important;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.m33-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(20, 81, 59, .2);
}

.m33-button-light {
    border-color: #fff;
    background: #fff;
    color: var(--m33-green) !important;
}

.m33-button-outline {
    border-color: rgba(255,255,255,.65);
    background: transparent;
}

.m33-hero {
    padding-top: clamp(34px, 5vw, 70px);
    background: linear-gradient(145deg, #eef6f0 0%, #fff 62%);
}

.m33-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    align-items: center;
    gap: clamp(32px, 6vw, 76px);
}

.m33-hero-media {
    position: relative;
    min-height: 500px;
    border-radius: 32px;
    overflow: hidden;
    background: #dceae1;
}

.m33-hero-media::after {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(191, 224, 90, .86);
    content: '';
    mix-blend-mode: screen;
}

.m33-hero-media img,
.m33-intro-media img,
.m33-equipment-card > img,
.m33-doctor-card > img,
.m33-gallery img,
.m33-before-after img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.m33-intro {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: clamp(32px, 6vw, 72px);
}

.m33-intro-top {
    grid-template-columns: 1fr;
}

.m33-intro-media {
    min-height: 370px;
    border-radius: 26px;
    overflow: hidden;
    background: var(--m33-soft);
}

.m33-prose {
    max-width: 760px;
}

.m33-prose p,
.m33-prose ul {
    margin-bottom: 18px;
}

.m33-prose a {
    color: var(--m33-green);
    font-weight: 700;
}

.m33-grid,
.m33-scroll-grid {
    display: grid;
    gap: 18px;
}

.m33-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.m33-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.m33-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.m33-scroll-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.m33-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid var(--m33-line);
    border-radius: 22px;
    background: #fff;
    color: inherit;
    padding: 24px;
    text-decoration: none !important;
    box-shadow: 0 12px 32px rgba(17, 56, 42, .055);
    transition: transform .2s ease, box-shadow .2s ease;
}

.m33-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(17, 56, 42, .1);
}

.m33-card-symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 26px;
    border-radius: 14px;
    background: #e6f1e9;
    color: var(--m33-green);
    font-size: 21px;
    font-weight: 900;
}

.m33-card-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
    border-radius: 14px;
    object-fit: cover;
}

.m33-card-link,
.m33-card a,
.m33-equipment-card a {
    margin-top: auto;
    color: var(--m33-green);
    font-weight: 800;
}

.m33-trust-card {
    border-color: #b8d9c6;
    background: linear-gradient(145deg, #fff, #edf7f0);
}

.m33-feature,
.m33-promotion,
.m33-cta {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(250px, .7fr);
    align-items: center;
    gap: 34px;
    border-radius: 30px;
    background: var(--m33-green);
    color: #fff;
    padding: clamp(28px, 5vw, 58px);
    overflow: hidden;
}

.m33-feature h2,
.m33-promotion h2,
.m33-cta h2,
.m33-feature p,
.m33-promotion p,
.m33-cta p {
    color: #fff;
}

.m33-feature img {
    width: 100%;
    max-height: 340px;
    border-radius: 22px;
    object-fit: cover;
}

.m33-promotion {
    background: linear-gradient(135deg, #173f32, #2a7456);
}

.m33-promotion > div:last-child,
.m33-cta-actions {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 14px;
}

.m33-promo-price {
    font-size: 32px;
}

.m33-service-card {
    justify-content: space-between;
}

.m33-price {
    display: block;
    margin: 18px 0;
    color: var(--m33-ink);
    font-size: 21px;
}

.m33-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
}

.m33-card-actions a {
    margin: 0;
}

.m33-accordions {
    display: grid;
    gap: 12px;
}

.m33-accordion {
    border: 1px solid var(--m33-line);
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
}

.m33-accordion summary {
    position: relative;
    padding: 20px 56px 20px 22px;
    font-size: 19px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.m33-accordion summary::-webkit-details-marker { display: none; }

.m33-accordion summary::after {
    position: absolute;
    top: 50%;
    right: 22px;
    content: '+';
    transform: translateY(-50%);
    transition: transform .25s ease;
}

.m33-accordion[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.m33-accordion > div {
    border-top: 1px solid var(--m33-line);
    padding: 10px 22px 20px;
    animation: m33Reveal .28s ease both;
}

@keyframes m33Reveal {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: none; }
}

.m33-catalog-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid #edf1ef;
    color: var(--m33-ink);
    padding: 13px 0;
    text-decoration: none;
}

.m33-catalog-row:last-child { border-bottom: 0; }
.m33-catalog-row strong { flex: 0 0 auto; }

.m33-equipment-card,
.m33-doctor-card {
    padding: 0;
    overflow: hidden;
}

.m33-equipment-card > img,
.m33-doctor-card > img {
    aspect-ratio: 4 / 3;
}

.m33-equipment-card > div,
.m33-doctor-card > div {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.m33-doctor-card > img { aspect-ratio: 3 / 4; object-position: center top; }
.m33-muted { font-size: 14px !important; }

.m33-tag-links {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: auto;
}

.m33-tag-links a {
    border-radius: 999px;
    background: #ebf3ee;
    padding: 7px 10px;
    font-size: 13px;
    text-decoration: none;
}

.m33-program-card ul { padding-left: 20px; }
.m33-program-card .m33-button { width: max-content; }

.m33-timeline {
    max-width: 830px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.m33-timeline li {
    position: relative;
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 20px;
    padding-bottom: 30px;
}

.m33-timeline li::before {
    position: absolute;
    top: 50px;
    bottom: 0;
    left: 24px;
    width: 2px;
    background: #c8d9d0;
    content: '';
}

.m33-timeline li:last-child::before { display: none; }

.m33-timeline li > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--m33-green);
    color: #fff;
    font-weight: 800;
}

.m33-faq > div { padding-top: 20px; }

.m33-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.m33-gallery figure,
.m33-before-after figure {
    margin: 0;
}

.m33-gallery img {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
}

.m33-gallery figcaption,
.m33-before-after figcaption {
    margin-top: 8px;
    color: var(--m33-muted);
    font-size: 13px;
}

.m33-before-after {
    border-radius: 22px;
    background: #fff;
    padding: 18px;
}

.m33-before-after > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.m33-before-after img {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
}

.m33-before-after > span {
    color: var(--m33-green);
    font-weight: 700;
}

.m33-cta {
    background: linear-gradient(135deg, #1e5943, #12392c);
}

@media (max-width: 900px) {
    .m33-hero-grid,
    .m33-intro,
    .m33-feature,
    .m33-promotion,
    .m33-cta {
        grid-template-columns: 1fr;
    }

    .m33-hero-media {
        grid-row: 1;
        min-height: 380px;
    }

    .m33-grid-3,
    .m33-grid-4,
    .m33-scroll-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .m33-promotion > div:last-child,
    .m33-cta-actions {
        align-items: flex-start;
    }
}

@media (max-width: 620px) {
    .m33-container {
        width: min(100% - 28px, 1180px);
    }

    .m33-block {
        padding: 48px 0;
    }

    .m33-block h1 {
        font-size: clamp(39px, 13vw, 58px);
    }

    .m33-hero-media {
        min-height: 310px;
        border-radius: 22px;
    }

    .m33-grid-2,
    .m33-grid-3,
    .m33-grid-4 {
        grid-template-columns: 1fr;
    }

    .m33-scroll-grid,
    .m33-gallery {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: minmax(82vw, 1fr);
        margin-inline: -14px;
        padding: 4px 14px 18px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .m33-scroll-grid > *,
    .m33-gallery > * {
        scroll-snap-align: start;
    }

    .m33-card-actions,
    .m33-catalog-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .m33-feature,
    .m33-promotion,
    .m33-cta {
        border-radius: 22px;
        padding: 26px 22px;
    }

    .m33-cta-actions {
        width: 100%;
    }

    .m33-cta-actions .m33-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .m33-direction-page *,
    .m33-direction-page *::before,
    .m33-direction-page *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}




/* Direction hero actions and social links. */
.m33-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px 22px;
}

.m33-hero-socials {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
}

.m33-social-link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    gap: 7px;
    border: 1px solid rgba(23, 91, 67, .24);
    border-color: color-mix(in srgb, var(--m33-green) 24%, transparent);
    border-radius: 999px;
    color: var(--m33-green) !important;
    padding: 9px 14px;
    font-size: 14px;
    font-weight: 750;
    line-height: 1;
    text-decoration: none !important;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.m33-social-link:hover {
    border-color: var(--m33-green);
    background: color-mix(in srgb, var(--m33-green) 8%, transparent);
    transform: translateY(-1px);
}

/* Dentistry is a visually independent, clean medical-tech direction. */
.m33-direction-page--dentistry {
    --m33-dent-bg: #083b45;
    --m33-dent-bg-2: #0d4a54;
    --m33-dent-panel: #135b66;
    --m33-dent-paper: #effaf8;
    --m33-dent-paper-2: #e2f2ef;
    --m33-dent-accent: #7ce5d6;
    --m33-dent-accent-2: #43c6b7;
    --m33-dent-white: #f5fffd;
    --m33-dent-muted: #bbd8d4;
    --m33-dent-line: rgba(205, 242, 237, .22);
    background: var(--m33-dent-bg);
    color: var(--m33-dent-white);
    isolation: isolate;
}

.m33-direction-page--dentistry .m33-container,
.m33-direction-page--dentistry section,
.m33-direction-page--dentistry article,
.m33-direction-page--dentistry a,
.m33-direction-page--dentistry div {
    min-width: 0;
}

.m33-dent-hero {
    position: relative;
    display: grid;
    align-items: center;
    min-height: 720px;
    min-height: min(830px, calc(100svh - 80px));
    padding: clamp(64px, 8vw, 118px) 0 clamp(72px, 9vw, 128px);
    overflow: hidden;
    background:
        radial-gradient(circle at 74% 38%, rgba(124, 229, 214, .19), transparent 31%),
        radial-gradient(circle at 15% 12%, rgba(164, 219, 231, .11), transparent 26%),
        linear-gradient(145deg, #073640, #0d4c57 62%, #093f49);
}

.m33-dent-hero::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(221, 249, 246, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(221, 249, 246, .045) 1px, transparent 1px);
    background-size: 64px 64px;
    content: '';
    mask-image: linear-gradient(to bottom, #000, transparent 88%);
    pointer-events: none;
}

.m33-dent-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    align-items: center;
    gap: clamp(36px, 7vw, 96px);
}

.m33-dent-kicker {
    margin: 0 0 18px !important;
    color: var(--m33-dent-accent) !important;
    font-size: 12px !important;
    font-weight: 850;
    letter-spacing: .15em;
    line-height: 1.4 !important;
    text-transform: uppercase;
}

.m33-dent-hero h1 {
    max-width: 760px;
    margin: 0 0 28px;
    color: var(--m33-dent-white);
    font-size: clamp(48px, 6.5vw, 92px);
    font-weight: 720;
    letter-spacing: -.065em;
    line-height: .92;
}

.m33-dent-hero h1 em {
    color: var(--m33-dent-accent);
    font-style: normal;
}

.m33-dent-lead {
    max-width: 680px;
    margin: 0 0 34px !important;
    color: #d4e9e6 !important;
    font-size: clamp(17px, 2vw, 21px) !important;
    line-height: 1.6 !important;
}

.m33-dent-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-bottom: 22px;
}

.m33-dent-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border: 1px solid var(--m33-dent-accent);
    border-radius: 3px;
    background: var(--m33-dent-accent);
    color: #073941 !important;
    padding: 14px 22px;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.2;
    text-align: center;
    text-decoration: none !important;
    transition: background .22s ease, border-color .22s ease, color .22s ease, transform .22s ease;
}

.m33-dent-button:hover {
    border-color: #a9f2e8;
    background: #a9f2e8;
    transform: translateY(-2px);
}

.m33-dent-button--ghost {
    border-color: rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .035);
    color: var(--m33-dent-white) !important;
}

.m33-dent-button--ghost:hover {
    border-color: rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .08);
    color: #fff !important;
}

.m33-direction-page--dentistry .m33-hero-socials {
    gap: 8px;
}

.m33-direction-page--dentistry .m33-social-link {
    border-color: rgba(218, 248, 244, .24);
    color: #d5e9e7 !important;
}

.m33-direction-page--dentistry .m33-social-link:hover {
    border-color: var(--m33-dent-accent);
    background: rgba(124, 229, 214, .12);
    color: var(--m33-dent-accent) !important;
}

.m33-dent-visual {
    position: relative;
    aspect-ratio: 1 / 1.02;
    max-width: 540px;
    justify-self: end;
    width: 100%;
    border: 1px solid rgba(218, 248, 244, .24);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(124, 229, 214, .2), transparent 47%),
        repeating-radial-gradient(circle, transparent 0 54px, rgba(222, 249, 246, .075) 55px 56px);
    box-shadow: inset 0 0 90px rgba(124, 229, 214, .075), 0 0 0 26px rgba(201, 241, 236, .025);
}

.m33-dent-visual::before,
.m33-dent-visual::after {
    position: absolute;
    top: 50%;
    left: 50%;
    background: rgba(218, 248, 244, .2);
    content: '';
    transform: translate(-50%, -50%);
}

.m33-dent-visual::before { width: 78%; height: 1px; }
.m33-dent-visual::after { width: 1px; height: 78%; }

.m33-dent-visual__orbit {
    position: absolute;
    inset: 14%;
    border: 1px dashed rgba(124, 229, 214, .55);
    border-radius: 50%;
    animation: m33DentOrbit 34s linear infinite;
}

.m33-dent-visual__orbit::before,
.m33-dent-visual__orbit::after {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--m33-dent-accent);
    box-shadow: 0 0 18px rgba(124, 229, 214, .62);
    content: '';
}

.m33-dent-visual__orbit::before { top: 8%; left: 17%; }
.m33-dent-visual__orbit::after { right: 11%; bottom: 16%; }

.m33-dent-visual__tooth {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 43%;
    aspect-ratio: 1;
    border: 1px solid rgba(221, 249, 246, .28);
    border-radius: 44% 56% 51% 49% / 47% 44% 56% 53%;
    background: rgba(7, 48, 57, .88);
    transform: translate(-50%, -50%) rotate(-6deg);
    animation: m33DentFloat 7s ease-in-out infinite;
}

.m33-dent-tooth-icon {
    display: block;
    width: 58%;
    height: 58%;
    color: var(--m33-dent-accent);
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.m33-dent-visual__label {
    position: absolute;
    z-index: 2;
    border: 1px solid var(--m33-dent-line);
    background: rgba(6, 48, 56, .9);
    color: #d9eeeb;
    padding: 7px 9px;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .14em;
}

.m33-dent-visual__label--scan { top: 13%; left: 7%; }
.m33-dent-visual__label--ct { top: 20%; right: 4%; }
.m33-dent-visual__label--plan { right: 7%; bottom: 23%; }

.m33-dent-visual > p {
    position: absolute;
    right: 13%;
    bottom: 10%;
    z-index: 2;
    display: grid;
    margin: 0;
    color: var(--m33-dent-white);
    font-size: 12px;
    line-height: 1.45;
    text-align: right;
}

.m33-dent-visual > p strong { color: var(--m33-dent-accent); }
.m33-dent-visual > p span { color: #a9cbc7; }

@keyframes m33DentOrbit {
    to { transform: rotate(360deg); }
}

@keyframes m33DentFloat {
    0%, 100% { transform: translate(-50%, -50%) rotate(-6deg); }
    50% { transform: translate(-50%, calc(-50% - 8px)) rotate(-3deg); }
}

.m33-dent-section {
    position: relative;
    padding: clamp(72px, 9vw, 132px) 0;
    overflow: hidden;
}

.m33-dent-section--dark { background: var(--m33-dent-bg); }
.m33-dent-section--graphite { background: var(--m33-dent-bg-2); }
.m33-dent-section--paper { background: var(--m33-dent-paper); color: #103b3f; }

.m33-dent-section--paper + .m33-dent-section--paper {
    border-top: 1px solid rgba(16, 59, 63, .13);
}

.m33-dent-section--signal {
    background:
        linear-gradient(120deg, rgba(124, 229, 214, .18), transparent 48%),
        #0b4650;
}

.m33-dent-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
    align-items: end;
    gap: clamp(20px, 5vw, 70px);
    margin-bottom: clamp(36px, 6vw, 70px);
}

.m33-dent-heading .m33-dent-kicker {
    grid-column: 1 / -1;
    margin-bottom: -4px !important;
}

.m33-dent-heading h2,
.m33-dent-team-head h2,
.m33-dent-closing h2 {
    max-width: 760px;
    margin: 0;
    color: var(--m33-dent-white);
    font-size: clamp(36px, 5vw, 66px);
    font-weight: 720;
    letter-spacing: -.055em;
    line-height: .98;
}

.m33-dent-heading > p:last-child,
.m33-dent-team-head p,
.m33-dent-closing p {
    margin: 0;
    color: var(--m33-dent-muted);
    font-size: 17px;
    line-height: 1.65;
}

.m33-dent-heading--dark h2,
.m33-dent-section--paper .m33-dent-team-head h2 { color: #103b3f; }

.m33-dent-heading--dark > p:last-child,
.m33-dent-section--paper .m33-dent-team-head p { color: #496c6d; }

.m33-dent-task-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--m33-dent-line);
    border-left: 1px solid var(--m33-dent-line);
}

.m33-dent-card {
    display: flex;
    flex-direction: column;
    min-height: 315px;
    border-right: 1px solid var(--m33-dent-line);
    border-bottom: 1px solid var(--m33-dent-line);
    background: rgba(231, 252, 249, .035);
    color: var(--m33-dent-white) !important;
    padding: clamp(24px, 4vw, 42px);
    text-decoration: none !important;
    transition: background .24s ease, transform .24s ease;
}

.m33-dent-card:hover {
    z-index: 1;
    background: rgba(124, 229, 214, .12);
    transform: translateY(-3px);
}

.m33-dent-card > span {
    margin-bottom: auto;
    color: var(--m33-dent-accent);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .12em;
}

.m33-dent-card h3,
.m33-dent-tech-grid h3,
.m33-dent-comfort-grid h3,
.m33-dent-story-grid h3 {
    margin: 36px 0 12px;
    color: inherit;
    font-size: clamp(23px, 2.6vw, 32px);
    letter-spacing: -.03em;
    line-height: 1.08;
}

.m33-dent-card p,
.m33-dent-tech-grid p,
.m33-dent-comfort-grid p {
    margin: 0 0 26px;
    color: var(--m33-dent-muted);
    font-size: 16px;
    line-height: 1.6;
}

.m33-dent-card b {
    margin-top: auto;
    color: var(--m33-dent-accent);
    font-size: 13px;
}

.m33-dent-roadmap {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    list-style: none;
}

.m33-dent-roadmap li {
    position: relative;
    min-height: 300px;
    border-top: 1px solid rgba(16, 59, 63, .22);
    padding: 28px 28px 28px 0;
}

.m33-dent-roadmap li:not(:last-child)::after {
    position: absolute;
    top: -4px;
    right: 20px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2caa9e;
    content: '';
}

.m33-dent-roadmap li > span {
    display: block;
    margin-bottom: 76px;
    color: #227f78;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .12em;
}

.m33-dent-roadmap h3 {
    margin: 0 0 12px;
    color: #103b3f;
    font-size: 25px;
    letter-spacing: -.03em;
}

.m33-dent-roadmap p {
    margin: 0;
    color: #4b6d6e;
    font-size: 15px;
    line-height: 1.6;
}

.m33-dent-catalog {
    padding-top: 48px;
}

.m33-dent-search {
    margin-bottom: 34px;
}

.m33-dent-catalog .am26-service-group > h3 {
    color: #103b3f;
    font-size: clamp(22px, 3vw, 30px);
    letter-spacing: -.025em;
}

.m33-dent-catalog .am26-service-row {
    background: #fbfffe;
}

.m33-dent-tech-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.m33-dent-tech-grid article {
    grid-column: span 2;
    min-height: 280px;
    border: 1px solid var(--m33-dent-line);
    background: #10505a;
    padding: 28px;
}

.m33-dent-tech-grid article:nth-child(4) { grid-column: 2 / span 2; }
.m33-dent-tech-grid article:nth-child(5) { grid-column: span 2; }

.m33-dent-tech-grid article > span {
    color: var(--m33-dent-accent);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .15em;
}

.m33-dent-tech-grid h3 { margin-top: 70px; }

.m33-dent-team-head {
    align-items: end;
    gap: 30px;
    margin-bottom: 42px;
}

.m33-dent-team-head > div:first-child {
    max-width: 850px;
}

.m33-dent-team-head .m33-dent-kicker { margin-bottom: 16px !important; }
.m33-dent-team-head p { max-width: 680px; margin: 18px 0 0; }

.m33-direction-page--dentistry .am26-card--doctor {
    border-color: rgba(16, 59, 63, .14);
    background: #fbfffe;
    box-shadow: none;
}

.m33-direction-page--dentistry .am26-card--doctor:hover {
    box-shadow: 0 18px 42px rgba(7, 55, 62, .14);
}

.m33-dent-comfort-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--m33-dent-line);
}

.m33-dent-comfort-grid article {
    min-height: 310px;
    background: var(--m33-dent-bg);
    padding: clamp(24px, 4vw, 40px);
}

.m33-dent-comfort-grid strong {
    color: var(--m33-dent-accent);
    font-size: 12px;
    letter-spacing: .12em;
}

.m33-dent-comfort-grid h3 {
    margin-top: 92px;
    color: var(--m33-dent-white);
}

.m33-dent-story-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.m33-dent-story-head .m33-dent-heading { flex: 1 1 auto; }
.m33-dent-story-head .am26-carousel-controls { flex: 0 0 auto; margin-bottom: 46px; }

.m33-dent-story-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, calc((100% - 28px) / 3));
    gap: 14px;
    margin-bottom: 26px;
    padding: 3px 1px 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.m33-dent-story-grid::-webkit-scrollbar { display: none; }

.m33-dent-story-grid a {
    display: flex;
    flex-direction: column;
    min-height: 300px;
    border: 1px solid rgba(124, 229, 214, .34);
    background: rgba(5, 49, 58, .2);
    color: var(--m33-dent-white) !important;
    padding: 28px;
    text-decoration: none !important;
    scroll-snap-align: start;
    transition: border-color .22s ease, background .22s ease, transform .22s ease;
}

.m33-dent-story-grid a:hover {
    border-color: var(--m33-dent-accent);
    background: rgba(124, 229, 214, .12);
    transform: translateY(-3px);
}

.m33-dent-story-grid span {
    color: var(--m33-dent-accent);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.m33-dent-story-grid h3 { margin-top: 70px; }

.m33-dent-text-link {
    display: inline-flex;
    color: var(--m33-dent-accent) !important;
    font-weight: 800;
    text-decoration: none !important;
}

.m33-dent-service-fallback {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.m33-dent-service-fallback .m33-dent-card {
    min-height: 300px;
}

.m33-direction-page--dentistry .m33-accordion {
    border-color: rgba(16, 59, 63, .18);
    border-radius: 0;
    background: transparent;
}

.m33-direction-page--dentistry .m33-accordion summary {
    color: #103b3f;
}

.m33-direction-page--dentistry .m33-accordion > div {
    border-top-color: rgba(16, 59, 63, .14);
}

.m33-direction-page--dentistry .m33-accordion .m33-prose p {
    color: #496c6d;
}

.m33-dent-external-block {
    background: var(--m33-dent-paper);
    color: #103b3f;
}

.m33-dent-section--closing {
    padding: clamp(64px, 8vw, 110px) 0;
    background: #073740;
}

.m33-dent-closing {
    border: 1px solid rgba(124, 229, 214, .46);
    background:
        radial-gradient(circle at 88% 15%, rgba(124, 229, 214, .2), transparent 34%),
        #0e4b55;
    padding: clamp(30px, 7vw, 82px);
}

.m33-dent-closing h2 { max-width: 900px; margin-bottom: 22px; }
.m33-dent-closing > p:not(.m33-dent-kicker) { max-width: 700px; margin-bottom: 32px; }
.m33-dent-closing > div { display: flex; flex-wrap: wrap; gap: 11px; }

@media (max-width: 980px) {
    .m33-dent-hero { min-height: auto; }

    .m33-dent-service-fallback { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .m33-dent-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
        gap: 34px;
    }

    .m33-dent-roadmap { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .m33-dent-roadmap li { min-height: 250px; }

    .m33-dent-tech-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .m33-dent-tech-grid article,
    .m33-dent-tech-grid article:nth-child(4),
    .m33-dent-tech-grid article:nth-child(5) { grid-column: auto; }
    .m33-dent-tech-grid article:last-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
    .m33-hero-actions { align-items: flex-start; flex-direction: column; }

    .m33-dent-hero {
        padding: 52px 0 70px;
    }

    .m33-dent-hero__grid { grid-template-columns: 1fr; }
    .m33-dent-hero__copy { order: 1; }
    .m33-dent-visual {
        order: 2;
        justify-self: center;
        max-width: 430px;
        margin-top: 12px;
    }

    .m33-dent-heading { grid-template-columns: 1fr; gap: 18px; }
    .m33-dent-heading .m33-dent-kicker { margin-bottom: 0 !important; }
    .m33-dent-task-grid { grid-template-columns: 1fr; }
    .m33-dent-card { min-height: 270px; }

    .m33-dent-roadmap { grid-template-columns: 1fr; }
    .m33-dent-roadmap li { min-height: 0; padding: 25px 0 34px; }
    .m33-dent-roadmap li:not(:last-child)::after { right: auto; left: 0; }
    .m33-dent-roadmap li > span { margin-bottom: 34px; }

    .m33-dent-tech-grid,
    .m33-dent-comfort-grid { grid-template-columns: 1fr; }

    .m33-dent-story-head { align-items: flex-start; }
    .m33-dent-story-grid { grid-auto-columns: minmax(250px, 82vw); }

    .m33-dent-tech-grid article:last-child { grid-column: auto; }
    .m33-dent-tech-grid article,
    .m33-dent-comfort-grid article,
    .m33-dent-story-grid a { min-height: 250px; }

    .m33-dent-comfort-grid h3 { margin-top: 62px; }
    .m33-dent-story-grid h3,
    .m33-dent-tech-grid h3 { margin-top: 48px; }
}

@media (max-width: 420px) {
    .m33-direction-page--dentistry .m33-container {
        width: calc(100% - 24px);
    }

    .m33-dent-hero h1 {
        font-size: clamp(39px, 13vw, 54px);
        overflow-wrap: anywhere;
    }

    .m33-dent-lead { font-size: 16px !important; }
    .m33-dent-hero__actions,
    .m33-dent-closing > div { display: grid; grid-template-columns: 1fr; }
    .m33-dent-button { width: 100%; }
    .m33-direction-page--dentistry .m33-hero-socials { width: 100%; }
    .m33-direction-page--dentistry .m33-social-link { flex: 1 1 0; justify-content: center; }

    .m33-dent-visual {
        width: min(92vw, 360px);
        box-shadow: inset 0 0 60px rgba(124, 229, 214, .075), 0 0 0 12px rgba(205, 242, 237, .025);
    }

    .m33-dent-section { padding: 64px 0; }
    .m33-dent-heading h2,
    .m33-dent-team-head h2,
    .m33-dent-closing h2 {
        font-size: clamp(33px, 11.5vw, 45px);
        overflow-wrap: anywhere;
    }

    .m33-dent-card,
    .m33-dent-tech-grid article,
    .m33-dent-comfort-grid article,
    .m33-dent-story-grid a,
    .m33-dent-closing { padding: 22px; }

    .m33-dent-card h3,
    .m33-dent-tech-grid h3,
    .m33-dent-comfort-grid h3,
    .m33-dent-story-grid h3 { overflow-wrap: anywhere; }
}

@media (prefers-reduced-motion: reduce) {
    .m33-dent-story-grid { scroll-behavior: auto; }

    .m33-dent-visual__orbit,
    .m33-dent-visual__tooth {
        animation: none !important;
    }

}


/* Shared doctor card component inside direction pages. */
.m33-direction-page .am26-card--doctor {
  color: var(--am26-ink);
}

.m33-direction-page .am26-card--doctor h3 {
  margin: 8px 0 .55em;
  font-size: 1.35rem;
  line-height: 1.16;
}

.m33-direction-page .am26-card--doctor .am26-card__meta {
  margin: 0 0 12px;
  color: var(--am26-brand-700);
  font-size: 12px;
  line-height: 1.62;
}

.m33-direction-page .am26-card--doctor .am26-text-link {
  color: var(--am26-ink);
}

@media (max-width: 760px) {
  .m33-direction-page .am26-card--doctor h3 {
    margin-top: 5px;
    font-size: 17px;
  }
}

/* AM26_STAGE14_MOBILE_QA */
.m33-direction-page .m33-social-link,
.m33-direction-page .m33-card a,
.m33-direction-page .m33-equipment-card a,
.m33-direction-page .m33-tag-links a,
.m33-direction-page .m33-dent-text-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
}

.m33-direction-page .m33-program-card .m33-button {
    max-width: 100%;
    white-space: normal;
    text-align: center;
}

@media (max-width: 1339px) {
    .m33-direction-page section[id] {
        scroll-margin-top: 150px;
    }
}

@media (min-width: 1340px) {
    .m33-direction-page section[id] {
        scroll-margin-top: 112px;
    }
}

@media (max-width: 620px) {
    .m33-direction-page .m33-scroll-grid,
    .m33-direction-page .m33-gallery {
        -webkit-overflow-scrolling: touch;
    }
}

/* AM26_STAGE20_DENTISTRY_MEDICAL_BLUE
   The dentistry page keeps its tooth animation and editorial structure, while
   returning to the site's light surfaces, rounded cards and readable type. */
.m33-direction-page--dentistry {
    --m33-dent-bg: #f4f8fb;
    --m33-dent-bg-2: #173f5a;
    --m33-dent-panel: #245873;
    --m33-dent-paper: #ffffff;
    --m33-dent-paper-2: #eaf3f8;
    --m33-dent-accent: #2d719c;
    --m33-dent-accent-2: #4d95bd;
    --m33-dent-white: #f7fbfd;
    --m33-dent-muted: #526c7c;
    --m33-dent-line: #cbdde8;
    background: #f7fafc;
    color: #17384e;
}

.m33-dent-hero {
    min-height: auto;
    padding: clamp(52px, 7vw, 88px) 0 clamp(58px, 7.5vw, 96px);
    border-bottom: 1px solid #d3e2ea;
    background:
        radial-gradient(circle at 76% 35%, rgba(86, 157, 198, .18), transparent 31%),
        radial-gradient(circle at 12% 8%, rgba(189, 222, 239, .27), transparent 28%),
        linear-gradient(145deg, #f9fcfe 0%, #edf6fb 62%, #e4f1f8 100%);
}
.m33-dent-hero::before {
    background-image:
        linear-gradient(rgba(52, 113, 151, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(52, 113, 151, .045) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, #000, transparent 94%);
}
.m33-dent-hero__grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
    gap: clamp(34px, 6vw, 78px);
}
.m33-dent-kicker {
    color: #286b94 !important;
    letter-spacing: .12em;
}
.m33-dent-hero h1 {
    max-width: 790px;
    margin-bottom: 24px;
    color: #153b55;
    font-size: clamp(44px, 5.6vw, 76px);
    font-weight: 730;
    letter-spacing: -.055em;
    line-height: .98;
}
.m33-dent-hero h1 em { color: #2d719c; }
.m33-dent-lead {
    color: #486577 !important;
    font-size: clamp(17px, 1.7vw, 20px) !important;
    line-height: 1.58 !important;
}
.m33-dent-button {
    min-height: 50px;
    border-color: #2d719c;
    border-radius: 14px;
    background: #2d719c;
    color: #fff !important;
    box-shadow: 0 9px 24px rgba(45, 113, 156, .16);
}
.m33-dent-button:hover {
    border-color: #245d81;
    background: #245d81;
    box-shadow: 0 13px 30px rgba(45, 113, 156, .22);
}
.m33-dent-button--ghost {
    border-color: #98bfd4;
    background: rgba(255, 255, 255, .58);
    color: #245d81 !important;
    box-shadow: none;
}
.m33-dent-button--ghost:hover {
    border-color: #2d719c;
    background: #e4f1f8;
    color: #173f5a !important;
}
.m33-direction-page--dentistry .m33-social-link {
    border-color: #b7d2e1;
    background: rgba(255, 255, 255, .48);
    color: #245d81 !important;
}
.m33-direction-page--dentistry .m33-social-link:hover {
    border-color: #2d719c;
    background: #e3f0f7;
    color: #173f5a !important;
}

.m33-dent-visual {
    max-width: 460px;
    border-color: #b9d4e3;
    background:
        radial-gradient(circle, rgba(81, 157, 199, .22), transparent 48%),
        repeating-radial-gradient(circle, transparent 0 51px, rgba(52, 113, 151, .10) 52px 53px),
        rgba(255, 255, 255, .56);
    box-shadow: inset 0 0 90px rgba(86, 157, 198, .09), 0 22px 62px rgba(29, 79, 109, .12);
}
.m33-dent-visual::before,
.m33-dent-visual::after { background: rgba(45, 113, 156, .20); }
.m33-dent-visual__orbit {
    border-color: rgba(45, 113, 156, .53);
}
.m33-dent-visual__orbit::before,
.m33-dent-visual__orbit::after {
    background: #4d95bd;
    box-shadow: 0 0 18px rgba(77, 149, 189, .52);
}
.m33-dent-visual__tooth {
    border-color: rgba(255, 255, 255, .6);
    background: #1b4c68;
    box-shadow: 0 14px 38px rgba(25, 75, 103, .22);
}
.m33-dent-tooth-icon { color: #d8f0fb; }
.m33-dent-visual__label {
    border-color: #b6d1e0;
    border-radius: 8px;
    background: rgba(255, 255, 255, .91);
    color: #245d81;
    box-shadow: 0 7px 22px rgba(29, 79, 109, .09);
}
.m33-dent-visual > p { color: #173f5a; }
.m33-dent-visual > p strong { color: #286b94; }
.m33-dent-visual > p span { color: #567386; }

.m33-dent-section {
    padding: clamp(60px, 7vw, 94px) 0;
}
.m33-dent-section--dark,
.m33-dent-section--paper { background: #fff; color: #17384e; }
.m33-dent-section--dark { background: #f3f8fb; }
.m33-dent-section--graphite { background: #173f5a; }
.m33-dent-section--paper + .m33-dent-section--paper { border-top-color: #d8e5ec; }
.m33-dent-section--signal {
    background:
        radial-gradient(circle at 12% 12%, rgba(124, 190, 225, .18), transparent 35%),
        #1b4d69;
}
.m33-dent-heading {
    gap: clamp(20px, 4vw, 58px);
    margin-bottom: clamp(30px, 4vw, 48px);
}
.m33-dent-heading h2,
.m33-dent-team-head h2,
.m33-dent-closing h2 {
    color: #17384e;
    font-size: clamp(34px, 4.2vw, 56px);
    font-weight: 720;
    letter-spacing: -.045em;
    line-height: 1.02;
}
.m33-dent-heading > p:last-child,
.m33-dent-team-head p,
.m33-dent-closing p {
    color: #526c7c;
    font-size: 16px;
    line-height: 1.6;
}
.m33-dent-heading--dark h2,
.m33-dent-section--paper .m33-dent-team-head h2 { color: #17384e; }
.m33-dent-heading--dark > p:last-child,
.m33-dent-section--paper .m33-dent-team-head p { color: #526c7c; }
.m33-dent-section--graphite .m33-dent-kicker,
.m33-dent-section--signal .m33-dent-kicker,
.m33-dent-section--closing .m33-dent-kicker { color: #b9e1f5 !important; }
.m33-dent-section--graphite .m33-dent-heading h2,
.m33-dent-section--signal .m33-dent-heading h2,
.m33-dent-section--closing .m33-dent-closing h2 { color: #fff; }
.m33-dent-section--graphite .m33-dent-heading > p:last-child,
.m33-dent-section--signal .m33-dent-heading > p:last-child,
.m33-dent-section--closing .m33-dent-closing > p:not(.m33-dent-kicker) { color: #d6e7f0; }

.m33-dent-task-grid {
    border: 0;
    gap: 16px;
}
.m33-dent-card {
    min-height: 260px;
    border: 1px solid #d2e2ea;
    border-radius: 20px;
    background: #fff;
    color: #17384e !important;
    padding: clamp(23px, 3vw, 32px);
    box-shadow: 0 12px 32px rgba(29, 79, 109, .065);
}
.m33-dent-card:hover {
    border-color: #8ebbd3;
    background: #f5fafc;
    box-shadow: 0 17px 40px rgba(29, 79, 109, .12);
}
.m33-dent-card > span,
.m33-dent-card b { color: #286b94; }
.m33-dent-card h3 { margin-top: 28px; color: #17384e; }
.m33-dent-card p { color: #526c7c; }

.m33-dent-roadmap {
    gap: 14px;
}
.m33-dent-roadmap li {
    min-height: 250px;
    padding: 24px;
    border: 1px solid #d4e3eb;
    border-radius: 18px;
    background: #f8fbfd;
}
.m33-dent-roadmap li:not(:last-child)::after {
    top: 24px;
    right: 24px;
    background: #4d95bd;
}
.m33-dent-roadmap li > span {
    margin-bottom: 44px;
    color: #2d719c;
}
.m33-dent-roadmap h3 { color: #17384e; }
.m33-dent-roadmap p { color: #526c7c; }

.m33-dent-catalog { padding-top: clamp(60px, 7vw, 94px); }
.m33-dent-catalog .am26-service-group > h3 { color: #17384e; }
.m33-dent-catalog .am26-service-row {
    border-color: #d4e3eb;
    background: #fff;
}

.m33-dent-tech-grid { gap: 16px; }
.m33-dent-tech-grid article {
    min-height: 255px;
    border-color: rgba(202, 229, 243, .23);
    border-radius: 18px;
    background: #245873;
    padding: 27px;
}
.m33-dent-tech-grid article > span { color: #b9e1f5; }
.m33-dent-tech-grid h3 { margin-top: 56px; color: #fff; }
.m33-dent-tech-grid p { color: #d6e7f0; }

.m33-direction-page--dentistry .am26-card--doctor {
    border-color: #d0e2eb;
    background: #fff;
    box-shadow: 0 11px 30px rgba(29, 79, 109, .07);
}
.m33-direction-page--dentistry .am26-card--doctor:hover {
    border-color: #8ebbd3;
    box-shadow: 0 17px 40px rgba(29, 79, 109, .13);
}
.m33-direction-page--dentistry .am26-card--doctor .am26-card__meta,
.m33-direction-page--dentistry .am26-card--doctor .am26-text-link { color: #286b94; }

.m33-dent-comfort-grid {
    gap: 16px;
    background: transparent;
}
.m33-dent-comfort-grid article {
    min-height: 270px;
    border: 1px solid #d2e2ea;
    border-radius: 20px;
    background: #fff;
    padding: clamp(23px, 3vw, 32px);
    box-shadow: 0 12px 32px rgba(29, 79, 109, .055);
}
.m33-dent-comfort-grid strong { color: #286b94; }
.m33-dent-comfort-grid h3 {
    margin-top: 64px;
    color: #17384e;
}
.m33-dent-comfort-grid p { color: #526c7c; }

.m33-dent-story-grid a {
    min-height: 270px;
    border-color: rgba(185, 225, 245, .32);
    border-radius: 18px;
    background: rgba(31, 91, 123, .78);
    color: #fff !important;
    padding: 26px;
}
.m33-dent-story-grid a:hover {
    border-color: #b9e1f5;
    background: #245f80;
}
.m33-dent-story-grid span,
.m33-dent-text-link { color: #b9e1f5 !important; }

.m33-direction-page--dentistry .m33-accordion {
    border-color: #d0e0e8;
    border-radius: 16px;
    background: #f8fbfd;
}
.m33-direction-page--dentistry .m33-accordion summary { color: #17384e; }
.m33-direction-page--dentistry .m33-accordion > div { border-top-color: #d6e4eb; }
.m33-direction-page--dentistry .m33-accordion .m33-prose p { color: #526c7c; }
.m33-dent-external-block { background: #fff; color: #17384e; }

.m33-dent-section--closing {
    padding: clamp(58px, 7vw, 90px) 0;
    background: #153b55;
}
.m33-dent-closing {
    border-color: rgba(185, 225, 245, .34);
    border-radius: 24px;
    background:
        radial-gradient(circle at 88% 15%, rgba(105, 177, 214, .23), transparent 34%),
        #1d4d68;
    padding: clamp(30px, 6vw, 68px);
}
.m33-dent-section--closing .m33-dent-button--ghost {
    border-color: rgba(255, 255, 255, .54);
    background: transparent;
    color: #fff !important;
}
.m33-dent-section--closing .m33-dent-button--ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .10);
}

@media (max-width: 980px) {
    .m33-dent-hero__grid { grid-template-columns: minmax(0, 1fr) minmax(290px, .72fr); }
    .m33-dent-roadmap { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
    .m33-dent-hero { padding: 42px 0 58px; }
    .m33-dent-hero__grid { grid-template-columns: 1fr; }
    .m33-dent-visual { max-width: 390px; }
    .m33-dent-section { padding: 54px 0; }
    .m33-dent-card { min-height: 230px; }
    .m33-dent-roadmap { grid-template-columns: 1fr; }
    .m33-dent-roadmap li { min-height: 0; padding: 22px; }
    .m33-dent-roadmap li:not(:last-child)::after { top: 22px; right: 22px; left: auto; }
    .m33-dent-roadmap li > span { margin-bottom: 28px; }
}
@media (max-width: 420px) {
    .m33-dent-hero h1 { font-size: clamp(38px, 12vw, 50px); }
    .m33-dent-section { padding: 48px 0; }
    .m33-dent-heading h2,
    .m33-dent-team-head h2,
    .m33-dent-closing h2 { font-size: clamp(31px, 10.8vw, 42px); }
    .m33-dent-visual {
        width: min(88vw, 340px);
        box-shadow: inset 0 0 54px rgba(86, 157, 198, .09), 0 18px 44px rgba(29, 79, 109, .12);
    }
}
