@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+KR:wght@400;500;600;700&display=swap');

:root {
    --jm-brand-950: #03171c;
    --jm-brand-900: #041e23;
    --jm-brand-850: #052c33;
    --jm-brand-800: #0c3d44;
    --jm-brand-100: #eef3ec;
    --jm-surface: rgba(255, 255, 255, 0.84);
    --jm-surface-strong: rgba(255, 255, 255, 0.94);
    --jm-border: rgba(6, 33, 38, 0.1);
    --jm-ink: #12262a;
    --jm-ink-soft: #54696d;
    --jm-accent: #39a46c;
    --jm-accent-strong: #2f8d5c;
    --jm-shadow-soft: 0 22px 60px rgba(13, 32, 35, 0.12);
    --jm-shadow-card: 0 16px 34px rgba(6, 28, 31, 0.08);
    --jm-radius-xl: 32px;
    --jm-radius-lg: 24px;
    --jm-radius-md: 18px;
    --jm-font-sans: 'IBM Plex Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
    --jm-font-serif: 'IBM Plex Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body.jm-site-shell {
    background:
        radial-gradient(circle at top left, rgba(57, 164, 108, 0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(12, 61, 68, 0.14), transparent 22%),
        linear-gradient(180deg, #f8faf6 0%, #eef3ec 100%);
    color: var(--jm-ink);
    font-family: var(--jm-font-sans);
}

body.jm-site-shell .site {
    overflow: clip;
}

body.jm-site-shell:not(.home) .site-content {
    background: transparent;
}

body.jm-site-shell:not(.home) .site-content .ast-container {
    max-width: 1240px;
    padding-inline: clamp(18px, 4vw, 32px);
}

body.jm-site-shell:not(.home) .site-main {
    padding-block: clamp(24px, 4vw, 40px) clamp(52px, 7vw, 88px);
}

body.jm-site-shell:not(.home) .ast-article-single,
body.jm-site-shell:not(.home) .ast-plain-container.ast-no-sidebar #primary {
    background: transparent;
}

body.jm-site-shell:not(.home) .entry-content {
    display: grid;
    gap: clamp(24px, 3.6vw, 38px);
}

body.jm-site-shell:not(.home) .entry-content > * {
    margin: 0 !important;
}

body.home .site-main,
body.home .site-content .ast-container {
    padding: 0;
    max-width: none;
}

.jm-section-kicker {
    margin: 0 0 10px;
    color: var(--jm-accent);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.jm-surface {
    padding: clamp(24px, 4vw, 34px);
    border: 1px solid var(--jm-border);
    border-radius: var(--jm-radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 246, 0.86));
    box-shadow: var(--jm-shadow-card);
}

.jm-surface__header {
    margin-bottom: clamp(22px, 3vw, 28px);
}

.jm-surface__header--split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}

.jm-surface__title {
    margin: 0;
    color: var(--jm-brand-900);
    font-family: var(--jm-font-serif);
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    line-height: 1.18;
}

.jm-surface__link {
    color: var(--jm-brand-800);
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
}

.jm-surface__link:hover {
    color: var(--jm-accent-strong);
}

.jm-header {
    position: sticky;
    top: 0;
    z-index: 1200;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(110deg, rgba(3, 23, 28, 0.95), rgba(5, 44, 51, 0.94) 52%, rgba(12, 61, 68, 0.92));
    backdrop-filter: blur(14px);
}

.admin-bar .jm-header {
    top: 32px;
}

.jm-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px clamp(18px, 4vw, 28px);
    display: flex;
    align-items: center;
    gap: 18px;
}

.jm-header__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff !important;
    text-decoration: none;
}

.jm-header__brand:hover {
    color: #fff !important;
}

.jm-header__brand-logo {
    width: 42px;
    height: 42px;
    display: block;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 22px rgba(2, 10, 12, 0.24);
}

.jm-header__brand-text {
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.jm-header__toggle {
    display: none;
    margin-left: auto;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
}

.jm-header__nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 14px;
}

.jm-header__menu,
.jm-header__menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.jm-header__menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.jm-header__menu > li {
    position: relative;
}

.jm-header__menu a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 13px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.93rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.jm-header__menu a:hover,
.jm-header__menu .current-menu-item > a,
.jm-header__menu .current_page_item > a,
.jm-header__menu .current-menu-ancestor > a {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.jm-header__menu .sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    padding: 10px;
    display: none;
    flex-direction: column;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(4, 30, 35, 0.96);
    box-shadow: var(--jm-shadow-soft);
}

.jm-header__menu .menu-item-has-children:hover > .sub-menu,
.jm-header__menu .menu-item-has-children:focus-within > .sub-menu {
    display: flex;
}

.jm-header__menu .sub-menu a {
    width: 100%;
    border-radius: 12px;
    justify-content: flex-start;
}

.jm-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.jm-header__secondary,
.jm-header__cta {
    min-height: 44px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
}

.jm-header__secondary {
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.92) !important;
    background: rgba(255, 255, 255, 0.06);
}

.jm-header__cta {
    background: var(--jm-accent);
    color: #fff !important;
    box-shadow: 0 12px 24px rgba(20, 92, 57, 0.25);
}

.jm-header__secondary:hover,
.jm-header__cta:hover {
    transform: translateY(-1px);
}

.jm-header__cta:hover {
    background: var(--jm-accent-strong);
}

.jm-footer {
    position: relative;
    margin-top: clamp(48px, 8vw, 96px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top right, rgba(57, 164, 108, 0.14), transparent 26%),
        linear-gradient(180deg, var(--jm-brand-950), var(--jm-brand-900));
    color: rgba(255, 255, 255, 0.9);
}

.jm-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(28px, 5vw, 44px) clamp(18px, 4vw, 30px);
}

.jm-footer__top {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.9fr) minmax(220px, 0.9fr);
    gap: clamp(20px, 4vw, 32px);
    align-items: start;
}

.jm-footer__eyebrow {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.jm-footer__title {
    margin: 0 0 12px;
    color: #fff;
    font-family: var(--jm-font-serif);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.jm-footer__copy {
    margin: 0;
    max-width: 40rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
}

.jm-footer__actions {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.jm-footer__primary,
.jm-footer__secondary {
    min-height: 46px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
}

.jm-footer__primary {
    background: var(--jm-accent);
    color: #fff !important;
}

.jm-footer__secondary {
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff !important;
    background: rgba(255, 255, 255, 0.04);
}

.jm-footer__heading {
    margin: 0 0 14px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}

.jm-footer__links,
.jm-footer__meta {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.jm-footer__links a,
.jm-footer__meta a {
    color: rgba(255, 255, 255, 0.82) !important;
    text-decoration: none;
}

.jm-footer__links a:hover,
.jm-footer__meta a:hover,
.jm-footer__legal a:hover {
    color: #fff !important;
}

.jm-footer__bottom {
    margin-top: clamp(26px, 4vw, 32px);
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 20px;
}

.jm-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
}

.jm-footer__legal a,
.jm-footer__copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    text-decoration: none;
}

.jm-blog-hub {
    display: grid;
    gap: clamp(24px, 4vw, 38px);
}

.jm-blog-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 5vw, 46px);
    border-radius: var(--jm-radius-xl);
    box-shadow: var(--jm-shadow-soft);
    background:
        linear-gradient(135deg, rgba(3, 23, 28, 0.84), rgba(5, 44, 51, 0.76)),
        var(--jm-blog-hero-image) center/cover no-repeat;
    color: #fff;
}

.jm-blog-hero::after {
    content: "";
    position: absolute;
    inset: auto -80px -80px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(57, 164, 108, 0.3), transparent 70%);
    pointer-events: none;
}

.jm-blog-hero__content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.jm-blog-hero__title {
    margin: 0;
    color: #fff;
    font-family: var(--jm-font-serif);
    font-size: clamp(2rem, 4.8vw, 3.6rem);
    line-height: 1.08;
}

.jm-blog-hero__lead {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.02rem;
    line-height: 1.8;
}

.jm-blog-search {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.jm-blog-search input {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 0.98rem;
    outline: none;
}

.jm-blog-search input::placeholder {
    color: rgba(255, 255, 255, 0.62);
}

.jm-blog-search button {
    min-height: 46px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: var(--jm-brand-900);
    font-weight: 800;
    cursor: pointer;
}

.jm-blog-tags {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.jm-blog-tags a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff !important;
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
}

.jm-blog-section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.jm-blog-section-card {
    min-height: 184px;
    padding: 22px;
    display: grid;
    align-content: start;
    gap: 12px;
    border-radius: var(--jm-radius-lg);
    border: 1px solid rgba(12, 61, 68, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 242, 0.92));
    color: var(--jm-ink) !important;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.jm-blog-section-card:hover {
    transform: translateY(-4px);
    border-color: rgba(57, 164, 108, 0.28);
    box-shadow: var(--jm-shadow-card);
}

.jm-blog-section-card__icon {
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(57, 164, 108, 0.18), rgba(12, 61, 68, 0.12));
    color: var(--jm-brand-800);
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.jm-blog-section-card strong {
    font-size: 1.06rem;
}

.jm-blog-section-card span:last-child {
    color: var(--jm-ink-soft);
    line-height: 1.7;
}

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

.jm-post-card {
    overflow: hidden;
    border: 1px solid rgba(12, 61, 68, 0.08);
    border-radius: var(--jm-radius-lg);
    background: var(--jm-surface-strong);
    box-shadow: var(--jm-shadow-card);
}

.jm-post-card__thumb {
    display: block;
    aspect-ratio: 1.24 / 1;
    background: linear-gradient(135deg, rgba(5, 44, 51, 0.92), rgba(12, 61, 68, 0.7));
    text-decoration: none;
}

.jm-post-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.jm-post-card__placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.jm-post-card__body {
    padding: 20px;
}

.jm-post-card__meta {
    margin: 0 0 8px;
    color: var(--jm-accent-strong);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.jm-post-card__title {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.45;
}

.jm-post-card__title a {
    color: var(--jm-brand-900);
    text-decoration: none;
}

.jm-post-card__title a:hover {
    color: var(--jm-accent-strong);
}

.jm-post-card__excerpt {
    margin: 12px 0 0;
    color: var(--jm-ink-soft);
    line-height: 1.7;
}

.jm-empty-state {
    margin: 0;
    color: var(--jm-ink-soft);
}

.jm-marketing-shell {
    display: grid;
    gap: clamp(22px, 3.6vw, 34px);
}

.jm-marketing-shell > :is(section, div, aside) {
    border: 1px solid rgba(6, 33, 38, 0.08);
    border-radius: var(--jm-radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(244, 248, 242, 0.56));
    box-shadow: var(--jm-shadow-card);
    backdrop-filter: blur(10px);
    overflow: clip;
}

.jm-marketing-shell :is(.wp-block-button__link, .uagb-button__link, .wp-element-button) {
    min-height: 46px;
    padding-inline: 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: var(--jm-accent) !important;
    color: #fff !important;
    box-shadow: 0 12px 24px rgba(20, 92, 57, 0.2);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.jm-marketing-shell :is(.wp-block-button__link, .uagb-button__link, .wp-element-button):hover {
    background: var(--jm-accent-strong) !important;
    transform: translateY(-2px);
}

.jm-marketing-shell :is(input, select, textarea) {
    border: 1px solid rgba(12, 61, 68, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: inset 0 1px 2px rgba(3, 23, 28, 0.04);
}

.jm-marketing-shell :is(input, select, textarea):focus {
    border-color: rgba(57, 164, 108, 0.68);
    outline: 3px solid rgba(57, 164, 108, 0.14);
    outline-offset: 0;
}

body.jm-page-about .entry-content {
    display: block;
}

body.jm-page-about .jm-about-page {
    display: grid;
    gap: clamp(28px, 4vw, 44px);
}

body.jm-page-about .jm-about-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: clamp(22px, 4vw, 42px);
    padding: clamp(28px, 4vw, 44px);
    border-radius: 34px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(57, 164, 108, 0.16), transparent 28%),
        linear-gradient(135deg, rgba(3, 23, 28, 0.98), rgba(5, 44, 51, 0.96) 58%, rgba(12, 61, 68, 0.92));
    box-shadow: 0 30px 70px rgba(4, 30, 35, 0.18);
    color: #f7f3ec;
}

body.jm-page-about .jm-about-hero::before {
    content: "";
    position: absolute;
    inset: auto auto -120px -100px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
    pointer-events: none;
}

body.jm-page-about .jm-about-hero__copy,
body.jm-page-about .jm-about-hero__media {
    position: relative;
    z-index: 1;
}

body.jm-page-about .jm-about-hero__copy {
    display: grid;
    align-content: center;
    gap: 0;
}

body.jm-page-about .jm-about-kicker {
    margin: 0 0 12px;
    color: rgba(247, 243, 236, 0.7);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.jm-page-about .jm-about-title {
    margin: 0;
    color: #fff;
    font-family: var(--jm-font-serif);
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

body.jm-page-about .jm-about-lead {
    margin: 18px 0 0;
    max-width: 56ch;
    color: rgba(247, 243, 236, 0.88);
    font-size: 1.02rem;
    line-height: 1.85;
}

body.jm-page-about .jm-about-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

body.jm-page-about .jm-about-button {
    min-height: 50px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

body.jm-page-about .jm-about-button:hover {
    transform: translateY(-2px);
}

body.jm-page-about .jm-about-button--primary {
    background: var(--jm-accent);
    color: #fff !important;
    box-shadow: 0 18px 30px rgba(20, 92, 57, 0.28);
}

body.jm-page-about .jm-about-button--primary:hover {
    background: var(--jm-accent-strong);
}

body.jm-page-about .jm-about-button--secondary {
    border-color: rgba(247, 243, 236, 0.26);
    background: rgba(247, 243, 236, 0.08);
    color: #fff !important;
}

body.jm-page-about .jm-about-button--secondary:hover {
    border-color: rgba(247, 243, 236, 0.46);
    background: rgba(247, 243, 236, 0.14);
}

body.jm-page-about .jm-about-highlights {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

body.jm-page-about .jm-about-highlights li {
    padding: 10px 15px;
    border: 1px solid rgba(247, 243, 236, 0.14);
    border-radius: 999px;
    background: rgba(247, 243, 236, 0.08);
    color: rgba(247, 243, 236, 0.92);
    font-size: 0.92rem;
    font-weight: 600;
}

body.jm-page-about .jm-about-hero__media {
    display: grid;
    gap: 16px;
    align-content: center;
}

body.jm-page-about .jm-about-photo {
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: var(--jm-shadow-soft);
}

body.jm-page-about .jm-about-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.jm-page-about .jm-about-photo figcaption {
    padding: 12px 16px 16px;
    color: var(--jm-ink-soft);
    font-size: 0.9rem;
    line-height: 1.55;
}

body.jm-page-about .jm-about-photo--primary {
    background: rgba(255, 255, 255, 0.98);
}

body.jm-page-about .jm-about-photo--primary img {
    aspect-ratio: 0.95;
}

body.jm-page-about .jm-about-photo--primary figcaption {
    color: rgba(6, 33, 38, 0.78);
}

body.jm-page-about .jm-about-hero__card {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

body.jm-page-about .jm-about-hero__card-label {
    margin: 0 0 10px;
    color: rgba(247, 243, 236, 0.62);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

body.jm-page-about .jm-about-hero__card h2 {
    margin: 0 0 12px !important;
    color: #fff;
    font-family: var(--jm-font-serif);
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    line-height: 1.16;
}

body.jm-page-about .jm-about-hero__card p {
    margin: 0;
    color: rgba(247, 243, 236, 0.86);
    line-height: 1.75;
}

body.jm-page-about .jm-about-hero__list {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

body.jm-page-about .jm-about-hero__list li {
    padding-left: 16px;
    position: relative;
    color: rgba(247, 243, 236, 0.88);
    line-height: 1.7;
}

body.jm-page-about .jm-about-hero__list li::before {
    content: "";
    position: absolute;
    top: 0.75em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(57, 164, 108, 0.94);
}

body.jm-page-about .jm-about-section-heading {
    max-width: 60rem;
    margin-bottom: clamp(18px, 3vw, 28px);
}

body.jm-page-about .jm-about-section-heading p {
    margin: 0;
    line-height: 1.82;
}

body.jm-page-about .jm-about-proof__grid,
body.jm-page-about .jm-about-fit__grid,
body.jm-page-about .jm-about-connect {
    display: grid;
    gap: 18px;
}

body.jm-page-about .jm-about-proof__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.jm-page-about .jm-about-proof__card,
body.jm-page-about .jm-about-fit__card,
body.jm-page-about .jm-about-story__principles,
body.jm-page-about .jm-about-connect__secondary {
    border: 1px solid rgba(6, 33, 38, 0.08);
    box-shadow: var(--jm-shadow-card);
}

body.jm-page-about .jm-about-proof__card,
body.jm-page-about .jm-about-fit__card {
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 246, 0.9));
}

body.jm-page-about .jm-about-proof__card h3,
body.jm-page-about .jm-about-fit__card h3,
body.jm-page-about .jm-about-story__principles strong,
body.jm-page-about .jm-about-timeline strong {
    color: var(--jm-brand-900);
    font-size: 1.06rem;
    line-height: 1.45;
}

body.jm-page-about .jm-about-proof__card p,
body.jm-page-about .jm-about-fit__card p,
body.jm-page-about .jm-about-story__principles p,
body.jm-page-about .jm-about-timeline p,
body.jm-page-about .jm-about-connect__secondary p {
    margin: 10px 0 0;
    color: var(--jm-ink-soft);
    line-height: 1.82;
}

body.jm-page-about .jm-about-story,
body.jm-page-about .jm-about-routine {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    gap: 22px;
    align-items: start;
}

body.jm-page-about .jm-about-story__copy p:not(.jm-section-kicker),
body.jm-page-about .jm-about-routine__panel > p:not(.jm-section-kicker),
body.jm-page-about .jm-about-connect__primary p,
body.jm-page-about .jm-about-connect__secondary p {
    line-height: 1.85;
}

body.jm-page-about .jm-about-story__copy .jm-about-fit__grid {
    margin-top: 22px;
}

body.jm-page-about .jm-about-story__aside {
    display: grid;
    gap: 16px;
}

body.jm-page-about .jm-about-photo--secondary,
body.jm-page-about .jm-about-photo--wide {
    background: rgba(255, 255, 255, 0.98);
}

body.jm-page-about .jm-about-photo--secondary img {
    aspect-ratio: 1;
}

body.jm-page-about .jm-about-photo--wide img {
    aspect-ratio: 1.02;
}

body.jm-page-about .jm-about-story__principles {
    padding: 22px;
    display: grid;
    gap: 16px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
}

body.jm-page-about .jm-about-fit__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.jm-page-about .jm-about-story__copy,
body.jm-page-about .jm-about-routine__panel {
    align-self: start;
}

body.jm-page-about .jm-about-timeline {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 16px;
}

body.jm-page-about .jm-about-timeline li {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

body.jm-page-about .jm-about-timeline__step {
    min-height: 62px;
    display: inline-grid;
    place-items: center;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(4, 30, 35, 0.94), rgba(12, 61, 68, 0.92));
    color: #fff;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

body.jm-page-about .jm-about-connect {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
}

body.jm-page-about .jm-about-connect__primary,
body.jm-page-about .jm-about-connect__secondary {
    height: 100%;
}

body.jm-page-about .jm-about-connect__secondary--full {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
    gap: 24px;
    align-items: start;
}

body.jm-page-about .jm-about-connect__secondary a {
    color: var(--jm-brand-800);
}

body.jm-page-about .jm-about-contact-list {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
    color: var(--jm-ink);
    font-weight: 600;
}

body.jm-page-about .jm-about-cta {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: 24px;
    padding: clamp(26px, 4vw, 38px);
    border-radius: 34px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(57, 164, 108, 0.18), transparent 24%),
        linear-gradient(135deg, rgba(3, 23, 28, 0.98), rgba(5, 44, 51, 0.96) 60%, rgba(12, 61, 68, 0.94));
    box-shadow: 0 28px 62px rgba(4, 30, 35, 0.16);
}

body.jm-page-about .jm-about-cta__content,
body.jm-page-about .jm-about-cta__actions {
    position: relative;
    z-index: 1;
}

body.jm-page-about .jm-about-cta h2 {
    margin: 0;
    color: #fff;
    font-family: var(--jm-font-serif);
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    line-height: 1.14;
}

body.jm-page-about .jm-about-cta p {
    margin: 14px 0 0;
    color: rgba(247, 243, 236, 0.82);
    line-height: 1.82;
}

body.jm-page-about .jm-about-cta .jm-section-kicker {
    color: rgba(247, 243, 236, 0.7);
}

body.jm-page-about .jm-about-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

body.jm-page-about .jm-about-cta__actions .jm-about-button {
    width: 100%;
}

body.jm-page-about .jm-about-connect__secondary .jm-about-cta__actions {
    margin-top: 20px;
}

body.jm-page-about .jm-about-connect__secondary .jm-about-button--secondary {
    border-color: rgba(6, 33, 38, 0.12);
    background: rgba(6, 33, 38, 0.04);
    color: var(--jm-brand-900) !important;
}

body.jm-page-about .jm-about-connect__secondary .jm-about-button--secondary:hover {
    border-color: rgba(6, 33, 38, 0.18);
    background: rgba(6, 33, 38, 0.08);
}

body.jm-page-pricing .jm-pricing-page {
    display: grid;
    gap: clamp(24px, 3.8vw, 40px);
}

body.jm-page-pricing .jm-pricing-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: clamp(24px, 3vw, 34px);
    padding: clamp(28px, 4vw, 40px);
    border-radius: clamp(28px, 4vw, 36px);
    background:
        radial-gradient(circle at left bottom, rgba(57, 164, 108, 0.18), transparent 34%),
        linear-gradient(120deg, var(--jm-brand-950), #022f39 50%, #0d5258 100%);
    box-shadow: var(--jm-shadow-soft);
    color: #fff;
}

body.jm-page-pricing .jm-pricing-hero__copy,
body.jm-page-pricing .jm-pricing-hero__media {
    position: relative;
    z-index: 1;
}

body.jm-page-pricing .jm-pricing-hero__copy {
    display: grid;
    align-content: center;
    gap: 18px;
}

body.jm-page-pricing .jm-pricing-kicker {
    margin: 0;
    color: rgba(242, 249, 246, 0.86);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.jm-page-pricing .jm-pricing-title {
    margin: 0;
    color: #fff;
    font-family: var(--jm-font-serif);
    font-size: clamp(2.3rem, 4vw, 4rem);
    line-height: 1.08;
}

body.jm-page-pricing .jm-pricing-lead {
    margin: 0;
    max-width: 58ch;
    color: rgba(240, 247, 244, 0.88);
    font-size: 1.04rem;
    line-height: 1.82;
}

body.jm-page-pricing .jm-pricing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

body.jm-page-pricing .jm-pricing-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

body.jm-page-pricing .jm-pricing-button:hover {
    transform: translateY(-2px);
}

body.jm-page-pricing .jm-pricing-button--primary {
    background: var(--jm-accent);
    color: #fff !important;
    box-shadow: 0 16px 30px rgba(17, 83, 54, 0.28);
}

body.jm-page-pricing .jm-pricing-button--primary:hover {
    background: var(--jm-accent-strong);
}

body.jm-page-pricing .jm-pricing-button--secondary {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
    color: #fff !important;
}

body.jm-page-pricing .jm-pricing-button--secondary:hover {
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.12);
}

body.jm-page-pricing .jm-pricing-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.jm-page-pricing .jm-pricing-highlights li {
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(247, 251, 248, 0.94);
    font-size: 0.92rem;
    font-weight: 700;
}

body.jm-page-pricing .jm-pricing-hero__media {
    display: grid;
    gap: 16px;
    align-content: center;
}

body.jm-page-pricing .jm-pricing-photo {
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
}

body.jm-page-pricing .jm-pricing-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.jm-page-pricing .jm-pricing-photo figcaption {
    padding: 12px 16px 0;
    color: rgba(241, 247, 243, 0.72);
    font-size: 0.88rem;
}

body.jm-page-pricing .jm-pricing-photo--hero img {
    min-height: 320px;
}

body.jm-page-pricing .jm-pricing-hero__card {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06));
    backdrop-filter: blur(8px);
}

body.jm-page-pricing .jm-pricing-hero__card-label {
    margin: 0 0 14px;
    color: rgba(242, 249, 246, 0.72);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.jm-page-pricing .jm-pricing-hero__facts {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.jm-page-pricing .jm-pricing-hero__facts li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.jm-page-pricing .jm-pricing-hero__facts li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

body.jm-page-pricing .jm-pricing-hero__facts span {
    color: rgba(236, 244, 240, 0.76);
    font-size: 0.92rem;
}

body.jm-page-pricing .jm-pricing-hero__facts strong {
    color: #fff;
    font-size: 0.95rem;
    text-align: right;
}

body.jm-page-pricing .jm-pricing-calc {
    display: grid;
    grid-template-columns: minmax(0, 1.34fr) minmax(280px, 0.66fr);
    gap: 22px;
    align-items: start;
}

body.jm-page-pricing .jm-pricing-calc__panel > .jm-surface__header p:last-child,
body.jm-page-pricing .jm-pricing-rules__copy p:last-child {
    margin: 14px 0 0;
    color: var(--jm-ink-soft);
    line-height: 1.8;
}

body.jm-page-pricing .jm-pricing-tabs {
    display: inline-flex;
    gap: 6px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(4, 30, 35, 0.06);
}

body.jm-page-pricing .jm-pricing-tab {
    min-height: 44px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--jm-brand-800);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
}

body.jm-page-pricing .jm-pricing-tab[aria-selected="true"] {
    background: var(--jm-accent);
    color: #fff;
    box-shadow: 0 10px 24px rgba(20, 92, 57, 0.2);
}

body.jm-page-pricing .jm-pricing-panel {
    display: grid;
    gap: 20px;
    margin-top: 22px;
}

body.jm-page-pricing .jm-pricing-service {
    display: grid;
    gap: 16px;
}

body.jm-page-pricing .jm-pricing-service__header h3,
body.jm-page-pricing .jm-pricing-sheet__card h3,
body.jm-page-pricing .jm-pricing-rules__card h3 {
    margin: 0;
    color: var(--jm-brand-900);
    font-family: var(--jm-font-serif);
    font-size: clamp(1.28rem, 2vw, 1.8rem);
}

body.jm-page-pricing .jm-pricing-service__header p,
body.jm-page-pricing .jm-pricing-sheet__card li,
body.jm-page-pricing .jm-pricing-rules__card p,
body.jm-page-pricing .jm-pricing-steps p,
body.jm-page-pricing .jm-pricing-cta__copy p {
    margin: 0;
    color: var(--jm-ink-soft);
    line-height: 1.78;
}

body.jm-page-pricing .jm-pricing-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.jm-page-pricing .jm-pricing-meta li {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(12, 61, 68, 0.05);
}

body.jm-page-pricing .jm-pricing-meta strong,
body.jm-page-pricing .jm-pricing-field span,
body.jm-page-pricing .jm-pricing-sheet__eyebrow,
body.jm-page-pricing .jm-pricing-steps strong {
    color: var(--jm-brand-900);
    font-size: 0.92rem;
    font-weight: 700;
}

body.jm-page-pricing .jm-pricing-meta span {
    color: var(--jm-ink-soft);
    font-size: 0.92rem;
    line-height: 1.6;
}

body.jm-page-pricing .jm-pricing-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

body.jm-page-pricing .jm-pricing-field {
    display: grid;
    gap: 8px;
}

body.jm-page-pricing .jm-pricing-field--compact {
    min-width: 150px;
}

body.jm-page-pricing .jm-pricing-field input,
body.jm-page-pricing .jm-pricing-field select {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(6, 33, 38, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--jm-brand-900);
    box-shadow: none;
}

body.jm-page-pricing .jm-pricing-field input:focus,
body.jm-page-pricing .jm-pricing-field select:focus {
    border-color: rgba(47, 141, 92, 0.6);
    box-shadow: 0 0 0 4px rgba(57, 164, 108, 0.12);
    outline: none;
}

body.jm-page-pricing .jm-pricing-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    align-items: end;
}

body.jm-page-pricing .jm-pricing-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.62);
}

body.jm-page-pricing .jm-pricing-check span {
    color: var(--jm-brand-900);
    font-size: 0.93rem;
    font-weight: 600;
}

body.jm-page-pricing .jm-pricing-panel__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
}

body.jm-page-pricing .jm-pricing-submit {
    min-height: 50px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: var(--jm-accent);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 16px 26px rgba(17, 83, 54, 0.2);
}

body.jm-page-pricing .jm-pricing-submit:hover {
    background: var(--jm-accent-strong);
}

body.jm-page-pricing .jm-pricing-note {
    margin: 0;
    color: var(--jm-ink-soft);
    font-size: 0.9rem;
    line-height: 1.7;
}

body.jm-page-pricing .jm-pricing-result {
    padding: 20px;
    border: 1px solid rgba(6, 33, 38, 0.08);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 247, 243, 0.84));
}

body.jm-page-pricing .jm-pricing-result__placeholder,
body.jm-page-pricing .jm-pricing-result__error {
    margin: 0;
    color: var(--jm-ink-soft);
    line-height: 1.7;
}

body.jm-page-pricing .jm-pricing-result__error {
    color: #8b2d2d;
    font-weight: 600;
}

body.jm-page-pricing .jm-pricing-result__summary {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: start;
    margin-bottom: 18px;
}

body.jm-page-pricing .jm-pricing-result__eyebrow {
    margin: 0 0 6px;
    color: var(--jm-accent-strong);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.jm-page-pricing .jm-pricing-result__summary h4 {
    margin: 0;
    color: var(--jm-brand-900);
    font-size: 1.2rem;
}

body.jm-page-pricing .jm-pricing-result__total {
    color: var(--jm-brand-900);
    font-size: 1.08rem;
    white-space: nowrap;
}

body.jm-page-pricing .jm-pricing-result__rows,
body.jm-page-pricing .jm-pricing-result__foot ul,
body.jm-page-pricing .jm-pricing-sheet__card ul,
body.jm-page-pricing .jm-pricing-checklist {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.jm-page-pricing .jm-pricing-result__rows li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(6, 33, 38, 0.08);
}

body.jm-page-pricing .jm-pricing-result__rows li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

body.jm-page-pricing .jm-pricing-result__rows span,
body.jm-page-pricing .jm-pricing-result__foot li,
body.jm-page-pricing .jm-pricing-checklist li {
    color: var(--jm-ink-soft);
    line-height: 1.7;
}

body.jm-page-pricing .jm-pricing-result__rows strong {
    color: var(--jm-brand-900);
}

body.jm-page-pricing .jm-pricing-result__foot {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(6, 33, 38, 0.08);
}

body.jm-page-pricing .jm-pricing-result__foot p {
    margin: 0 0 10px;
    color: var(--jm-brand-800);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.7;
}

body.jm-page-pricing .jm-pricing-calc__aside {
    display: grid;
    gap: 18px;
}

body.jm-page-pricing .jm-pricing-checklist li,
body.jm-page-pricing .jm-pricing-sheet__card li {
    position: relative;
    padding-left: 18px;
}

body.jm-page-pricing .jm-pricing-checklist li::before,
body.jm-page-pricing .jm-pricing-sheet__card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--jm-accent);
    transform: translateY(-50%);
}

body.jm-page-pricing .jm-pricing-aside__links {
    display: grid;
    gap: 10px;
}

body.jm-page-pricing .jm-pricing-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid rgba(6, 33, 38, 0.1);
    background: rgba(255, 255, 255, 0.72);
    color: var(--jm-brand-900) !important;
    font-size: 0.93rem;
    font-weight: 700;
    text-decoration: none;
}

body.jm-page-pricing .jm-pricing-link:hover {
    border-color: rgba(6, 33, 38, 0.16);
    background: rgba(255, 255, 255, 0.92);
}

body.jm-page-pricing .jm-pricing-sheet__grid,
body.jm-page-pricing .jm-pricing-rules__grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.jm-page-pricing .jm-pricing-sheet__card,
body.jm-page-pricing .jm-pricing-rules__card {
    padding: 24px;
    border: 1px solid rgba(6, 33, 38, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--jm-shadow-card);
}

body.jm-page-pricing .jm-pricing-sheet__eyebrow {
    margin: 0 0 8px;
    color: var(--jm-accent-strong);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

body.jm-page-pricing .jm-pricing-sheet__price {
    margin: 12px 0 16px;
    color: var(--jm-brand-900);
    font-size: 1.06rem;
    font-weight: 700;
}

body.jm-page-pricing .jm-pricing-rules {
    display: grid;
    gap: 16px;
}

body.jm-page-pricing .jm-pricing-flow {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 20px;
    align-items: stretch;
}

body.jm-page-pricing .jm-pricing-flow__panel {
    display: grid;
    align-content: center;
}

body.jm-page-pricing .jm-pricing-steps {
    display: grid;
    gap: 18px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

body.jm-page-pricing .jm-pricing-steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
}

body.jm-page-pricing .jm-pricing-steps__step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(57, 164, 108, 0.12);
    color: var(--jm-accent-strong);
    font-size: 0.9rem;
    font-weight: 700;
}

body.jm-page-pricing .jm-pricing-cta__card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: clamp(28px, 4vw, 36px);
    border-radius: 32px;
    background: linear-gradient(135deg, var(--jm-brand-950), #0c3d44 54%, #1f6c45 100%);
    box-shadow: var(--jm-shadow-soft);
}

body.jm-page-pricing .jm-pricing-cta__copy h2 {
    margin: 0;
    color: #fff;
    font-family: var(--jm-font-serif);
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    line-height: 1.14;
}

body.jm-page-pricing .jm-pricing-cta__copy p {
    margin: 14px 0 0;
    color: rgba(244, 249, 246, 0.82);
}

body.jm-page-pricing .jm-pricing-cta__copy .jm-section-kicker {
    color: rgba(244, 249, 246, 0.72);
}

body.jm-page-pricing .jm-pricing-cta__actions {
    display: grid;
    gap: 12px;
}

body.jm-page-pricing .jm-pricing-cta__actions .jm-pricing-button {
    width: 100%;
}

body.jm-page-pricing .jm-pricing-cta__actions .jm-pricing-button--secondary {
    border-color: rgba(255, 255, 255, 0.16);
}

body.jm-page-faq .entry-content {
    display: block;
}

body.jm-page-faq .jm-faq-page {
    display: grid;
    gap: clamp(24px, 4vw, 36px);
}

body.jm-page-faq .jm-faq-hero,
body.jm-page-faq .jm-faq-cta {
    position: relative;
    overflow: hidden;
    border-radius: var(--jm-radius-xl);
    box-shadow: var(--jm-shadow-soft);
    background:
        radial-gradient(circle at top right, rgba(57, 164, 108, 0.32), transparent 42%),
        linear-gradient(135deg, rgba(4, 28, 33, 0.98), rgba(7, 53, 60, 0.94));
    color: #f4f8f6;
}

body.jm-page-faq .jm-faq-hero {
    padding: clamp(30px, 5vw, 48px);
}

body.jm-page-faq .jm-faq-hero__content {
    max-width: 780px;
}

body.jm-page-faq .jm-faq-hero__title {
    margin: 0;
    color: #fff;
    font-family: var(--jm-font-serif);
    font-size: clamp(2.2rem, 4vw, 3.35rem);
    line-height: 1.06;
}

body.jm-page-faq .jm-faq-hero__lead {
    margin: 16px 0 0;
    max-width: 720px;
    color: rgba(244, 249, 246, 0.84);
    line-height: 1.8;
}

body.jm-page-faq .jm-faq-hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

body.jm-page-faq .jm-faq-hero__facts span,
body.jm-page-faq .jm-faq-anchor-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

body.jm-page-faq .jm-faq-hero__actions,
body.jm-page-faq .jm-faq-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

body.jm-page-faq .jm-faq-button {
    min-height: 46px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

body.jm-page-faq .jm-faq-button--primary {
    background: var(--jm-accent);
    color: #fff;
    box-shadow: 0 14px 24px rgba(20, 92, 57, 0.24);
}

body.jm-page-faq .jm-faq-button--secondary {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

body.jm-page-faq .jm-faq-button:hover {
    transform: translateY(-2px);
}

body.jm-page-faq .jm-faq-links__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

body.jm-page-faq .jm-faq-links__card {
    min-height: 84px;
    padding: 22px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    border: 1px solid rgba(12, 61, 68, 0.08);
    background: rgba(255, 255, 255, 0.82);
    color: var(--jm-brand-800) !important;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--jm-shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

body.jm-page-faq .jm-faq-links__card:hover {
    transform: translateY(-3px);
    border-color: rgba(57, 164, 108, 0.28);
    box-shadow: 0 20px 36px rgba(6, 28, 31, 0.12);
}

body.jm-page-faq .jm-faq-anchor-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

body.jm-page-faq .jm-faq-anchor-nav a {
    border-color: rgba(12, 61, 68, 0.08);
    background: rgba(255, 255, 255, 0.86);
    color: var(--jm-brand-800);
}

body.jm-page-faq .jm-faq-section__lead {
    margin: 14px 0 0;
    color: var(--jm-ink-soft);
    line-height: 1.75;
}

body.jm-page-faq .jm-faq-list {
    display: grid;
    gap: 14px;
}

body.jm-page-faq .jm-faq-item {
    border: 1px solid rgba(12, 61, 68, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 12px 24px rgba(6, 28, 31, 0.06);
    overflow: clip;
}

body.jm-page-faq .jm-faq-item[open] {
    border-color: rgba(57, 164, 108, 0.28);
}

body.jm-page-faq .jm-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

body.jm-page-faq .jm-faq-item summary::-webkit-details-marker {
    display: none;
}

body.jm-page-faq .jm-faq-item__question {
    color: var(--jm-brand-900);
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.55;
}

body.jm-page-faq .jm-faq-item__toggle {
    position: relative;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(12, 61, 68, 0.08);
}

body.jm-page-faq .jm-faq-item__toggle::before,
body.jm-page-faq .jm-faq-item__toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background: var(--jm-brand-800);
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}

body.jm-page-faq .jm-faq-item__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

body.jm-page-faq .jm-faq-item[open] .jm-faq-item__toggle::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

body.jm-page-faq .jm-faq-item__answer {
    padding: 0 24px 22px;
    color: var(--jm-ink-soft);
    line-height: 1.85;
}

body.jm-page-faq .jm-faq-item__answer p {
    margin: 0;
}

body.jm-page-faq .jm-faq-item__answer a {
    color: var(--jm-accent-strong);
    font-weight: 700;
}

body.jm-page-faq .jm-faq-cta {
    padding: clamp(28px, 5vw, 40px);
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
    gap: 24px;
    align-items: center;
}

body.jm-page-faq .jm-faq-cta__copy h2 {
    margin: 0;
    color: #fff;
    font-family: var(--jm-font-serif);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.16;
}

body.jm-page-faq .jm-faq-cta__copy p:last-child {
    margin: 14px 0 0;
    color: rgba(244, 249, 246, 0.8);
    line-height: 1.8;
}

body.jm-page-contact .jm-marketing-shell iframe {
    width: 100%;
    border: 0;
    border-radius: 22px;
    box-shadow: var(--jm-shadow-card);
}

body.jm-page-gallery .jm-marketing-shell a[href*="/wp-content/gallery/"] {
    display: block;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--jm-shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.jm-page-gallery .jm-marketing-shell a[href*="/wp-content/gallery/"]:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px rgba(6, 28, 31, 0.12);
}

body.jm-page-gallery .jm-marketing-shell a[href*="/wp-content/gallery/"] img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.jm-page-gallery .jm-marketing-shell a[href*="/nggallery/page/"] {
    min-width: 40px;
    min-height: 40px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(12, 61, 68, 0.1);
    background: rgba(255, 255, 255, 0.82);
    color: var(--jm-brand-800) !important;
    text-decoration: none;
}

body.jm-page-toolbox .uagb-block-353480fd {
    background: linear-gradient(120deg, var(--jm-brand-950), var(--jm-brand-800)) !important;
    box-shadow: var(--jm-shadow-soft);
}

body.jm-page-toolbox .uagb-block-353480fd :is(h1, h2, h3, h4, p, span) {
    color: #fff !important;
}

body.jm-page-toolbox .uagb-block-353480fd .wp-block-button__link,
body.jm-page-toolbox .uagb-block-353480fd .uagb-button__link {
    color: var(--jm-brand-900) !important;
}

body.jm-page-contact .entry-content {
    display: block;
}

body.jm-page-contact .jm-contact-page {
    display: grid;
    gap: clamp(24px, 3.8vw, 40px);
}

body.jm-page-contact .jm-contact-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: clamp(24px, 3vw, 36px);
    padding: clamp(28px, 4vw, 42px);
    border-radius: clamp(28px, 4vw, 36px);
    overflow: hidden;
    background:
        radial-gradient(circle at right top, rgba(57, 164, 108, 0.18), transparent 30%),
        linear-gradient(135deg, rgba(3, 23, 28, 0.98), rgba(5, 40, 47, 0.96) 52%, rgba(12, 63, 71, 0.92));
    box-shadow: var(--jm-shadow-soft);
    color: #fff;
}

body.jm-page-contact .jm-contact-hero::before {
    content: "";
    position: absolute;
    inset: auto -110px -120px auto;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 72%);
    pointer-events: none;
}

body.jm-page-contact .jm-contact-hero__copy,
body.jm-page-contact .jm-contact-hero__media {
    position: relative;
    z-index: 1;
}

body.jm-page-contact .jm-contact-hero__copy {
    display: grid;
    align-content: center;
    gap: 18px;
}

body.jm-page-contact .jm-contact-kicker {
    margin: 0;
    color: rgba(242, 249, 246, 0.82);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.jm-page-contact .jm-contact-title {
    margin: 0;
    color: #fff;
    font-family: var(--jm-font-serif);
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.08;
}

body.jm-page-contact .jm-contact-lead {
    margin: 0;
    max-width: 58ch;
    color: rgba(241, 247, 243, 0.88);
    font-size: 1.03rem;
    line-height: 1.82;
}

body.jm-page-contact .jm-contact-actions,
body.jm-page-contact .jm-contact-highlights,
body.jm-page-contact .jm-contact-meta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

body.jm-page-contact .jm-contact-button,
body.jm-page-contact .jm-contact-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none !important;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

body.jm-page-contact .jm-contact-button:hover,
body.jm-page-contact .jm-contact-inline:hover {
    transform: translateY(-2px);
}

body.jm-page-contact .jm-contact-button--primary {
    background: var(--jm-accent);
    color: #fff !important;
    box-shadow: 0 16px 30px rgba(17, 83, 54, 0.28);
}

body.jm-page-contact .jm-contact-button--primary:hover {
    background: var(--jm-accent-strong);
}

body.jm-page-contact .jm-contact-button--secondary {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
    color: #fff !important;
}

body.jm-page-contact .jm-contact-button--secondary:hover {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.12);
}

body.jm-page-contact .jm-contact-inline {
    min-height: 46px;
    padding: 0 18px;
    border-color: rgba(6, 33, 38, 0.12);
    background: rgba(6, 33, 38, 0.04);
    color: var(--jm-brand-900) !important;
}

body.jm-page-contact .jm-contact-inline:hover {
    border-color: rgba(6, 33, 38, 0.2);
    background: rgba(6, 33, 38, 0.08);
}

body.jm-page-contact .jm-contact-inline--muted {
    color: var(--jm-ink-soft) !important;
}

body.jm-page-contact .jm-contact-highlights {
    margin: 0;
    padding: 0;
    list-style: none;
}

body.jm-page-contact .jm-contact-highlights li {
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(247, 251, 248, 0.94);
    font-size: 0.92rem;
    font-weight: 700;
}

body.jm-page-contact .jm-contact-hero__media {
    display: grid;
    gap: 16px;
    align-content: center;
}

body.jm-page-contact .jm-contact-photo {
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--jm-shadow-soft);
}

body.jm-page-contact .jm-contact-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.jm-page-contact .jm-contact-photo figcaption {
    padding: 12px 16px 16px;
    color: var(--jm-ink-soft);
    font-size: 0.9rem;
    line-height: 1.6;
}

body.jm-page-contact .jm-contact-photo--hero {
    background: rgba(255, 255, 255, 0.96);
}

body.jm-page-contact .jm-contact-photo--hero img {
    min-height: 320px;
}

body.jm-page-contact .jm-contact-photo--hero figcaption {
    color: rgba(6, 33, 38, 0.78);
}

body.jm-page-contact .jm-contact-hero__card {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06));
    backdrop-filter: blur(8px);
}

body.jm-page-contact .jm-contact-hero__card-label {
    margin: 0 0 14px;
    color: rgba(242, 249, 246, 0.72);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.jm-page-contact .jm-contact-hero__facts,
body.jm-page-contact .jm-contact-meta {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.jm-page-contact .jm-contact-hero__facts li,
body.jm-page-contact .jm-contact-meta li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.jm-page-contact .jm-contact-meta li {
    border-bottom-color: rgba(6, 33, 38, 0.08);
}

body.jm-page-contact .jm-contact-hero__facts li:last-child,
body.jm-page-contact .jm-contact-meta li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

body.jm-page-contact .jm-contact-hero__facts span,
body.jm-page-contact .jm-contact-meta span {
    color: rgba(236, 244, 240, 0.76);
    font-size: 0.92rem;
}

body.jm-page-contact .jm-contact-meta span {
    color: var(--jm-ink-soft);
}

body.jm-page-contact .jm-contact-hero__facts a,
body.jm-page-contact .jm-contact-hero__facts strong,
body.jm-page-contact .jm-contact-meta a,
body.jm-page-contact .jm-contact-meta strong {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: right;
}

body.jm-page-contact .jm-contact-meta a,
body.jm-page-contact .jm-contact-meta strong {
    color: var(--jm-brand-900);
}

body.jm-page-contact .jm-contact-hero__note {
    margin: 16px 0 0;
    color: rgba(240, 247, 244, 0.78);
    line-height: 1.72;
}

body.jm-page-contact .jm-contact-journey__grid,
body.jm-page-contact .jm-contact-links__grid {
    display: grid;
    gap: 18px;
}

body.jm-page-contact .jm-contact-journey__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.jm-page-contact .jm-contact-card,
body.jm-page-contact .jm-contact-prep__card,
body.jm-page-contact .jm-contact-links__item,
body.jm-page-contact .jm-contact-reach__card {
    border-radius: 28px;
}

body.jm-page-contact .jm-contact-card {
    display: grid;
    gap: 16px;
    padding: 24px;
    border: 1px solid rgba(6, 33, 38, 0.08);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--jm-shadow-soft);
}

body.jm-page-contact .jm-contact-card--primary {
    border-color: rgba(57, 164, 108, 0.22);
    background: linear-gradient(180deg, rgba(232, 247, 239, 0.96), rgba(255, 255, 255, 0.98));
}

body.jm-page-contact .jm-contact-card--secondary {
    background: linear-gradient(180deg, rgba(247, 244, 238, 0.98), rgba(255, 255, 255, 0.98));
}

body.jm-page-contact .jm-contact-card__step {
    margin: 0;
    color: var(--jm-accent-strong);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.jm-page-contact .jm-contact-card h3,
body.jm-page-contact .jm-contact-prep__card h3 {
    margin: 0;
    color: var(--jm-brand-950);
    font-family: var(--jm-font-serif);
    font-size: 1.45rem;
    line-height: 1.2;
}

body.jm-page-contact .jm-contact-card p,
body.jm-page-contact .jm-contact-prep__card p,
body.jm-page-contact .jm-contact-links__item span {
    margin: 0;
    color: var(--jm-ink-soft);
    line-height: 1.8;
}

body.jm-page-contact .jm-contact-card ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.jm-page-contact .jm-contact-card li {
    position: relative;
    padding-left: 16px;
    color: var(--jm-brand-900);
    line-height: 1.72;
}

body.jm-page-contact .jm-contact-card li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--jm-accent);
}

body.jm-page-contact .jm-contact-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

body.jm-page-contact .jm-contact-prep,
body.jm-page-contact .jm-contact-reach {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
    gap: 22px;
    align-items: stretch;
}

body.jm-page-contact .jm-contact-prep__copy {
    display: grid;
    gap: 22px;
}

body.jm-page-contact .jm-contact-prep__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

body.jm-page-contact .jm-contact-prep__card {
    padding: 22px;
    border: 1px solid rgba(6, 33, 38, 0.08);
    background: rgba(248, 245, 239, 0.62);
}

body.jm-page-contact .jm-contact-photo--prep img {
    min-height: 100%;
}

body.jm-page-contact .jm-contact-links__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.jm-page-contact .jm-contact-links__item {
    display: grid;
    gap: 10px;
    padding: 22px;
    border: 1px solid rgba(6, 33, 38, 0.08);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--jm-shadow-soft);
    text-decoration: none !important;
}

body.jm-page-contact .jm-contact-links__item strong {
    color: var(--jm-brand-950);
    font-size: 1.06rem;
}

body.jm-page-contact .jm-contact-links__item:hover {
    border-color: rgba(6, 33, 38, 0.16);
    transform: translateY(-2px);
}

body.jm-page-contact .jm-contact-map {
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(6, 33, 38, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--jm-shadow-soft);
}

body.jm-page-contact .jm-contact-map iframe {
    display: block;
    width: 100%;
    min-height: 100%;
    aspect-ratio: 16 / 11;
    border: 0;
}

body.jm-page-contact .jm-contact-reach__card {
    display: grid;
    gap: 22px;
}

body.jm-page-contract .entry-content {
    gap: clamp(28px, 4vw, 40px);
}

body.jm-page-contract .entry-header {
    display: none;
}

body.jm-page-contract .jm-contract-page {
    display: grid;
    gap: clamp(24px, 4vw, 38px);
}

body.jm-page-contract .jm-contract-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    gap: clamp(22px, 3vw, 30px);
    align-items: start;
    padding: clamp(28px, 4vw, 38px);
    border: 1px solid rgba(6, 33, 38, 0.08);
    border-radius: 32px;
    background:
        radial-gradient(circle at top left, rgba(57, 164, 108, 0.18), transparent 30%),
        linear-gradient(140deg, rgba(4, 30, 35, 0.98), rgba(12, 61, 68, 0.94));
    box-shadow: var(--jm-shadow-soft);
}

body.jm-page-contract .jm-contract-hero__copy,
body.jm-page-contract .jm-contract-hero__aside {
    display: grid;
    gap: 18px;
}

body.jm-page-contract .jm-contract-hero__copy {
    align-self: center;
}

body.jm-page-contract .jm-contract-kicker {
    margin: 0;
    color: rgba(228, 246, 237, 0.82);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.jm-page-contract .jm-contract-title {
    margin: 0;
    color: #f7fbf7;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

body.jm-page-contract .jm-contract-lead {
    margin: 0;
    color: rgba(234, 244, 239, 0.82);
    font-size: 1.02rem;
    line-height: 1.8;
    max-width: 58ch;
}

body.jm-page-contract .jm-contract-actions,
body.jm-page-contract .jm-contract-highlights,
body.jm-page-contract .jm-contract-summary__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

body.jm-page-contract .jm-contract-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 0.96rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

body.jm-page-contract .jm-contract-button:hover {
    transform: translateY(-2px);
}

body.jm-page-contract .jm-contract-button--primary {
    background: #39a46c;
    color: #f8fcf8;
    box-shadow: 0 16px 30px rgba(57, 164, 108, 0.28);
}

body.jm-page-contract .jm-contract-button--secondary {
    border: 1px solid rgba(228, 246, 237, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #f4faf6;
    backdrop-filter: blur(8px);
}

body.jm-page-contract .jm-contract-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

body.jm-page-contract .jm-contract-highlights li {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(228, 246, 237, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(244, 250, 246, 0.92);
    font-size: 0.9rem;
    font-weight: 600;
}

body.jm-page-contract .jm-contract-photo {
    overflow: hidden;
    margin: 0;
    border-radius: 28px;
    border: 1px solid rgba(6, 33, 38, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--jm-shadow-card);
}

body.jm-page-contract .jm-contract-photo img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

body.jm-page-contract .jm-contract-photo figcaption {
    padding: 14px 18px 18px;
    color: var(--jm-ink-soft);
    font-size: 0.9rem;
    line-height: 1.6;
}

body.jm-page-contract .jm-contract-summary {
    display: grid;
    gap: 18px;
}

body.jm-page-contract .jm-contract-summary__list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

body.jm-page-contract .jm-contract-summary__list li,
body.jm-page-contract .jm-contract-flow__card {
    border: 1px solid rgba(6, 33, 38, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--jm-shadow-card);
}

body.jm-page-contract .jm-contract-summary__list li {
    position: relative;
    padding: 16px 18px 16px 42px;
    border-radius: 20px;
    color: var(--jm-ink);
    line-height: 1.7;
}

body.jm-page-contract .jm-contract-summary__list li::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 18px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--jm-accent);
}

body.jm-page-contract .jm-contract-summary__meta {
    display: grid;
    gap: 10px;
}

body.jm-page-contract .jm-contract-summary__meta p {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin: 0;
    color: var(--jm-ink-soft);
}

body.jm-page-contract .jm-contract-summary__meta span {
    font-weight: 700;
    color: var(--jm-ink);
}

body.jm-page-contract .jm-contract-summary__meta a {
    color: var(--jm-brand-850);
    font-weight: 600;
    text-decoration: none;
}

body.jm-page-contract .jm-contract-summary__links a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(6, 33, 38, 0.08);
    background: rgba(245, 248, 244, 0.96);
    color: var(--jm-brand-850);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none !important;
}

body.jm-page-contract .jm-contract-flow__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

body.jm-page-contract .jm-contract-flow__card {
    display: grid;
    gap: 12px;
    padding: 24px;
    border-radius: 24px;
}

body.jm-page-contract .jm-contract-flow__step {
    margin: 0;
    color: var(--jm-accent);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

body.jm-page-contract .jm-contract-flow__card h3 {
    margin: 0;
    color: var(--jm-brand-950);
    font-size: 1.12rem;
}

body.jm-page-contract .jm-contract-flow__card p {
    margin: 0;
    color: var(--jm-ink-soft);
    line-height: 1.7;
}

body.jm-page-contract .jm-contract-form-shell {
    padding: clamp(20px, 3vw, 30px);
}

body.jm-page-contract .jm-contract-form-copy {
    gap: 14px;
    margin-bottom: 18px;
}

body.jm-page-contract .jm-contract-form-copy p:last-child {
    max-width: 48ch;
}

body.jm-page-contract .jm-contract-form-embed {
    display: grid;
}

body.jm-page-contract #jijimingo-app-container {
    margin: 0;
}

@media (max-width: 1100px) {
    body.jm-page-contract .jm-contract-hero {
        grid-template-columns: 1fr;
    }

    body.jm-page-contract .jm-contract-flow__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    body.jm-page-contract .jm-contract-hero,
    body.jm-page-contract .jm-contract-form-shell {
        padding: 20px;
        border-radius: 24px;
    }

    body.jm-page-contract .jm-contract-actions,
    body.jm-page-contract .jm-contract-highlights,
    body.jm-page-contract .jm-contract-summary__links {
        gap: 10px;
    }

    body.jm-page-contract .jm-contract-actions .jm-contract-button,
    body.jm-page-contract .jm-contract-summary__links a {
        width: 100%;
    }

    body.jm-page-contract .jm-contract-flow__grid {
        grid-template-columns: 1fr;
    }

    body.jm-page-contract .jm-contract-summary__meta p {
        flex-direction: column;
        gap: 4px;
    }
}

body.jm-page-form-flow .site-content .ast-container {
    max-width: 1340px;
}

body.jm-page-form-flow .entry-content {
    gap: 18px;
}

body.jm-page-form-flow .entry-content > :is(div, section, form) {
    border-radius: 28px;
}

@media (max-width: 1100px) {
    body.jm-page-about .jm-about-proof__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.jm-page-about .jm-about-fit__grid {
        grid-template-columns: 1fr;
    }

    body.jm-page-about .jm-about-story,
    body.jm-page-about .jm-about-routine,
    body.jm-page-about .jm-about-connect,
    body.jm-page-about .jm-about-cta {
        grid-template-columns: 1fr;
    }

    body.jm-page-about .jm-about-connect__secondary--full {
        grid-template-columns: 1fr;
    }

    body.jm-page-contact .jm-contact-hero,
    body.jm-page-contact .jm-contact-prep,
    body.jm-page-contact .jm-contact-reach {
        grid-template-columns: 1fr;
    }

    body.jm-page-pricing .jm-pricing-hero,
    body.jm-page-pricing .jm-pricing-calc,
    body.jm-page-pricing .jm-pricing-flow,
    body.jm-page-pricing .jm-pricing-cta__card {
        grid-template-columns: 1fr;
    }

    body.jm-page-pricing .jm-pricing-meta,
    body.jm-page-pricing .jm-pricing-sheet__grid,
    body.jm-page-pricing .jm-pricing-rules__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.jm-page-contact .jm-contact-journey__grid,
    body.jm-page-contact .jm-contact-links__grid {
        grid-template-columns: 1fr;
    }

    body.jm-page-contact .jm-contact-prep__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.jm-page-faq .jm-faq-links__grid,
    body.jm-page-faq .jm-faq-cta {
        grid-template-columns: 1fr;
    }

    .jm-blog-section-grid,
    .jm-post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .jm-footer__top {
        grid-template-columns: 1fr 1fr;
    }

    .jm-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1024px) {
    .admin-bar .jm-header {
        top: 46px;
    }

    .jm-header__toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .jm-header__nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 14px;
        border-radius: 22px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(3, 23, 28, 0.98);
        box-shadow: var(--jm-shadow-soft);
    }

    .jm-header.is-open .jm-header__nav {
        display: flex;
    }

    .jm-header__menu,
    .jm-header__actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .jm-header__menu a,
    .jm-header__secondary,
    .jm-header__cta {
        width: 100%;
        justify-content: flex-start;
    }

    .jm-header__menu .sub-menu {
        position: static;
        display: flex;
        margin-top: 6px;
        padding: 6px 0 0 10px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .jm-blog-hero {
        padding: 28px 22px;
    }

    body.jm-page-about .jm-about-hero {
        grid-template-columns: 1fr;
    }

    body.jm-page-contact .jm-contact-actions {
        flex-direction: column;
        align-items: stretch;
    }

    body.jm-page-contact .jm-contact-actions .jm-contact-button {
        width: 100%;
    }

    body.jm-page-pricing .jm-pricing-actions {
        flex-direction: column;
        align-items: stretch;
    }

    body.jm-page-pricing .jm-pricing-actions .jm-pricing-button {
        width: 100%;
    }
}

@media (max-width: 720px) {
    body.jm-site-shell:not(.home) .site-content .ast-container {
        padding-inline: 16px;
    }

    body.jm-page-about .jm-about-hero,
    body.jm-page-about .jm-about-cta {
        padding: 24px 20px;
        border-radius: 26px;
    }

    body.jm-page-about .jm-about-actions,
    body.jm-page-about .jm-about-highlights {
        flex-direction: column;
        align-items: stretch;
    }

    body.jm-page-about .jm-about-actions .jm-about-button {
        width: 100%;
    }

    body.jm-page-about .jm-about-proof__grid,
    body.jm-page-about .jm-about-fit__grid {
        grid-template-columns: 1fr;
    }

    body.jm-page-about .jm-about-timeline li {
        grid-template-columns: 1fr;
    }

    body.jm-page-about .jm-about-timeline__step {
        min-height: 48px;
        width: 72px;
    }

    body.jm-page-about .jm-about-story__principles,
    body.jm-page-about .jm-about-proof__card,
    body.jm-page-about .jm-about-fit__card {
        padding: 20px;
    }

    body.jm-page-contact .jm-contact-hero,
    body.jm-page-contact .jm-contact-card,
    body.jm-page-contact .jm-contact-prep__card,
    body.jm-page-contact .jm-contact-links__item,
    body.jm-page-contact .jm-contact-reach__card {
        padding: 24px 20px;
        border-radius: 26px;
    }

    body.jm-page-contact .jm-contact-highlights,
    body.jm-page-contact .jm-contact-card__actions,
    body.jm-page-contact .jm-contact-meta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    body.jm-page-contact .jm-contact-prep__grid,
    body.jm-page-contact .jm-contact-links__grid {
        grid-template-columns: 1fr;
    }

    body.jm-page-contact .jm-contact-inline,
    body.jm-page-contact .jm-contact-button {
        width: 100%;
    }

    body.jm-page-contact .jm-contact-hero__facts li,
    body.jm-page-contact .jm-contact-meta li {
        flex-direction: column;
        align-items: start;
    }

    body.jm-page-pricing .jm-pricing-hero,
    body.jm-page-pricing .jm-pricing-calc__panel,
    body.jm-page-pricing .jm-pricing-calc__aside,
    body.jm-page-pricing .jm-pricing-sheet__card,
    body.jm-page-pricing .jm-pricing-rules__card,
    body.jm-page-pricing .jm-pricing-cta__card {
        padding: 24px 20px;
        border-radius: 26px;
    }

    body.jm-page-pricing .jm-pricing-form-grid,
    body.jm-page-pricing .jm-pricing-meta,
    body.jm-page-pricing .jm-pricing-sheet__grid,
    body.jm-page-pricing .jm-pricing-rules__grid {
        grid-template-columns: 1fr;
    }

    body.jm-page-pricing .jm-pricing-options,
    body.jm-page-pricing .jm-pricing-result__summary,
    body.jm-page-pricing .jm-pricing-panel__footer {
        flex-direction: column;
        align-items: stretch;
    }

    body.jm-page-pricing .jm-pricing-tabs {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.jm-page-pricing .jm-pricing-tab {
        width: 100%;
    }

    body.jm-page-pricing .jm-pricing-result__rows li {
        flex-direction: column;
        align-items: start;
    }

    body.jm-page-faq .jm-faq-hero,
    body.jm-page-faq .jm-faq-cta {
        padding: 24px 20px;
        border-radius: 26px;
    }

    body.jm-page-faq .jm-faq-links__grid {
        grid-template-columns: 1fr;
    }

    body.jm-page-faq .jm-faq-item summary {
        padding: 20px;
    }

    body.jm-page-faq .jm-faq-item__answer {
        padding: 0 20px 20px;
    }

    body.jm-page-faq .jm-faq-hero__actions,
    body.jm-page-faq .jm-faq-cta__actions {
        flex-direction: column;
    }

    body.jm-page-faq .jm-faq-button {
        width: 100%;
    }

    .jm-surface__header--split,
    .jm-blog-search,
    .jm-footer__bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .jm-blog-section-grid,
    .jm-post-grid,
    .jm-footer__top {
        grid-template-columns: 1fr;
    }

    .jm-footer__actions {
        flex-direction: column;
    }

    .jm-footer__primary,
    .jm-footer__secondary {
        width: 100%;
    }
}
