.yl-multi-page {
    --ylm-primary: #4f46e5;
    --ylm-primary-dark: #3730a3;
    --ylm-secondary: #0ea5e9;
    --ylm-cyan: #22d3ee;
    --ylm-ink: #0f172a;
    --ylm-copy: #334155;
    --ylm-muted: #64748b;
    --ylm-line: #dbe5f3;
    --ylm-soft: #f4f7ff;
    --ylm-card: #ffffff;
    background: #ffffff;
    color: var(--ylm-copy);
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* 将公共导航与普通内页锁定为同一排版基准，隔离产品页正文的行高设置。 */
.yl-multi-page .navbar,
.yl-multi-page .navbar *,
.yl-multi-page .navbar *::before,
.yl-multi-page .navbar *::after {
    box-sizing: border-box;
}

.yl-multi-page .navbar {
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

.yl-multi-page .navbar .nav-container {
    width: 100%;
    height: 70px;
}

.yl-multi-page .navbar .nav-logo,
.yl-multi-page .navbar .nav-main-content,
.yl-multi-page .navbar .nav-menu,
.yl-multi-page .navbar .nav-cta,
.yl-multi-page .navbar .nav-toggle {
    line-height: 1.7;
}

.yl-multi-page .navbar .nav-logo .logo-text {
    font-size: 25.6px;
    font-weight: 900;
    line-height: 1.7;
}

.yl-multi-page .navbar .nav-logo .logo-icon {
    font-size: 28.8px;
    line-height: 1.7;
}

.yl-multi-page .navbar .nav-menu > li > a {
    color: #334155;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.7;
}

.yl-multi-page .navbar .nav-menu > li > a > i {
    font-size: 18px;
    line-height: 1.7;
}

.yl-multi-page .navbar .dropdown-menu,
.yl-multi-page .navbar .dropdown-menu a,
.yl-multi-page .navbar .dropdown-menu a i {
    line-height: 1.7;
}

.yl-multi-page .navbar .dropdown-menu a {
    color: #334155;
    font-size: 14px;
    font-weight: 500;
}

.yl-multi-page .navbar .dropdown-menu a i {
    font-size: 18px;
    font-weight: 500;
}

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

.yl-multi-page img {
    display: block;
    height: auto;
    max-width: 100%;
}

.yl-multi-page figure {
    margin: 0;
}

.yl-multi-page main {
    overflow: hidden;
}

.ylm-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.ylm-section {
    padding: 104px 0;
    position: relative;
}

.ylm-section-soft {
    background: var(--ylm-soft);
}

.ylm-section-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.ylm-section-heading.is-centered {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.ylm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 16px;
    color: var(--ylm-primary);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .08em;
}

.ylm-eyebrow::before {
    content: "";
    width: 30px;
    height: 3px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--ylm-primary), var(--ylm-secondary));
}

.ylm-section-heading h2,
.ylm-copy h2 {
    margin: 0;
    color: var(--ylm-ink);
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.18;
    letter-spacing: -.035em;
    font-weight: 800;
}

.ylm-section-heading > p:not(.ylm-eyebrow),
.ylm-copy > p {
    margin: 20px 0 0;
    color: var(--ylm-muted);
    font-size: 17px;
    line-height: 1.85;
}

.ylm-btn {
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.ylm-btn:hover,
.ylm-btn:focus-visible {
    text-decoration: none;
}

.ylm-btn:focus-visible,
.ylm-case-card:focus-visible,
.ylm-capability summary:focus-visible,
.ylm-faq summary:focus-visible {
    outline: 3px solid rgba(14, 165, 233, .38);
    outline-offset: 3px;
}

.ylm-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--ylm-primary), var(--ylm-secondary));
    box-shadow: 0 16px 36px rgba(79, 70, 229, .24);
}

.ylm-btn-primary:hover {
    color: #fff;
    box-shadow: 0 18px 40px rgba(79, 70, 229, .32);
}

.ylm-btn-secondary {
    color: var(--ylm-ink);
    border-color: rgba(148, 163, 184, .45);
    background: rgba(255, 255, 255, .84);
}

.ylm-btn-secondary:hover {
    color: var(--ylm-primary);
    border-color: rgba(79, 70, 229, .45);
    background: #fff;
}

.ylm-hero {
    min-height: 760px;
    padding: 170px 0 90px;
    display: flex;
    align-items: center;
    position: relative;
    background:
        radial-gradient(circle at 8% 10%, rgba(34, 211, 238, .2), transparent 28%),
        radial-gradient(circle at 90% 16%, rgba(79, 70, 229, .2), transparent 28%),
        linear-gradient(145deg, #f8fbff 0%, #eef4ff 52%, #f7f4ff 100%);
}

.ylm-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(79, 70, 229, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(79, 70, 229, .035) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.ylm-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .94fr) minmax(520px, 1.06fr);
    gap: 62px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ylm-hero-copy h1 {
    max-width: 650px;
    margin: 0;
    color: var(--ylm-ink);
    font-size: clamp(44px, 5.2vw, 70px);
    line-height: 1.08;
    letter-spacing: -.055em;
    font-weight: 850;
}

.ylm-hero-copy h1 span {
    color: transparent;
    background: linear-gradient(120deg, var(--ylm-primary), var(--ylm-secondary));
    -webkit-background-clip: text;
    background-clip: text;
}

.ylm-hero-desc {
    max-width: 620px;
    margin: 24px 0 0;
    color: var(--ylm-copy);
    font-size: 18px;
    line-height: 1.85;
}

.ylm-hero-points {
    margin: 24px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
}

.ylm-hero-points li {
    padding: 8px 12px;
    border: 1px solid rgba(79, 70, 229, .15);
    border-radius: 999px;
    color: #3730a3;
    background: rgba(255, 255, 255, .78);
    font-size: 13px;
    font-weight: 700;
}

.ylm-hero-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ylm-hero-note {
    margin: 18px 0 0;
    color: var(--ylm-muted);
    font-size: 13px;
}

.ylm-hero-stage {
    min-height: 590px;
    position: relative;
}

.ylm-browser {
    width: 104%;
    height: 590px;
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, .35);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 34px 74px rgba(15, 23, 42, .2);
}

.ylm-browser-bar {
    height: 34px;
    padding-left: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.ylm-browser-bar span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #cbd5e1;
}

.ylm-browser img {
    width: 100%;
    height: calc(100% - 34px);
    object-fit: cover;
    object-position: 24% center;
}

.ylm-phone {
    width: 170px;
    padding: 7px;
    position: absolute;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 28px;
    background: #111827;
    box-shadow: 0 24px 58px rgba(15, 23, 42, .32);
}

.ylm-phone img {
    width: 100%;
    border-radius: 21px;
}

.ylm-phone-consumer {
    right: -10px;
    bottom: 0;
    transform: rotate(3deg);
}

.ylm-phone-merchant {
    left: 18px;
    bottom: -4px;
    transform: rotate(-4deg);
}

.ylm-proof-chip {
    max-width: 210px;
    padding: 16px 18px;
    position: absolute;
    left: 190px;
    bottom: 34px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 18px;
    color: var(--ylm-copy);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .16);
    backdrop-filter: blur(14px);
    font-size: 13px;
    line-height: 1.6;
}

.ylm-proof-chip strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ylm-ink);
    font-size: 15px;
}

.ylm-trust-strip {
    border-top: 1px solid #e8edf7;
    border-bottom: 1px solid #e8edf7;
    background: #fff;
}

.ylm-trust-grid {
    min-height: 92px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.ylm-trust-item {
    min-height: 48px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-right: 1px solid #e8edf7;
    color: var(--ylm-copy);
    font-size: 14px;
    font-weight: 700;
}

.ylm-trust-item:first-child { padding-left: 0; }
.ylm-trust-item:last-child { border-right: 0; }
.ylm-trust-item i { color: var(--ylm-primary); font-size: 22px; }

.ylm-fit-grid,
.ylm-split-grid,
.ylm-deploy-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 70px;
    align-items: center;
}

.ylm-scene-image,
.ylm-screenshot-frame {
    overflow: hidden;
    border: 1px solid var(--ylm-line);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 28px 64px rgba(15, 23, 42, .12);
}

.ylm-scene-image img {
    width: 100%;
    min-height: 450px;
    object-fit: cover;
}

.ylm-fit-list {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    counter-reset: fit;
}

.ylm-fit-list li {
    padding: 19px 0 19px 56px;
    position: relative;
    border-bottom: 1px solid var(--ylm-line);
    counter-increment: fit;
}

.ylm-fit-list li::before {
    content: "0" counter(fit);
    width: 38px;
    height: 38px;
    position: absolute;
    left: 0;
    top: 20px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--ylm-primary);
    background: #eef2ff;
    font-size: 12px;
    font-weight: 800;
}

.ylm-fit-list strong {
    display: block;
    margin-bottom: 6px;
    color: var(--ylm-ink);
    font-size: 17px;
}

.ylm-fit-list span {
    color: var(--ylm-muted);
    font-size: 14px;
    line-height: 1.75;
}

.ylm-single-note {
    margin: 24px 0 0;
    padding: 16px 18px;
    border-radius: 16px;
    color: #475569;
    background: #eef6ff;
    font-size: 14px;
    line-height: 1.75;
}

.ylm-single-note a { color: var(--ylm-primary); font-weight: 700; }

.ylm-case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.ylm-case-card {
    display: block;
    overflow: hidden;
    border: 1px solid var(--ylm-line);
    border-radius: 24px;
    color: inherit;
    background: #fff;
    box-shadow: 0 16px 42px rgba(15, 23, 42, .08);
    text-decoration: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.ylm-case-card:hover {
    border-color: rgba(79, 70, 229, .34);
    box-shadow: 0 22px 48px rgba(15, 23, 42, .14);
    text-decoration: none;
}

.ylm-case-screen {
    height: auto;
    aspect-ratio: 720 / 1500;
    position: relative;
    overflow: hidden;
    background: #eef2f7;
}

.ylm-case-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.ylm-case-qr {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    color: #fff;
    background: rgba(11, 22, 49, .92);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}

.ylm-case-qr img {
    width: 210px;
    height: 210px;
    padding: 10px;
    border-radius: 18px;
    background: #fff;
    object-fit: contain;
    box-shadow: 0 20px 46px rgba(0, 0, 0, .3);
}

.ylm-case-qr strong { font-size: 17px; }
.ylm-case-qr span { color: #cbd5e1; font-size: 13px; }

.ylm-case-card:hover .ylm-case-qr,
.ylm-case-card:focus .ylm-case-qr,
.ylm-case-card:focus-within .ylm-case-qr {
    opacity: 1;
}

.ylm-case-caption {
    padding: 20px 22px 22px;
}

.ylm-case-caption span {
    display: block;
    margin-bottom: 6px;
    color: var(--ylm-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
}

.ylm-case-caption strong {
    color: var(--ylm-ink);
    font-size: 17px;
}

.ylm-dark {
    color: #cbd5e1;
    background:
        radial-gradient(circle at 18% 10%, rgba(14, 165, 233, .2), transparent 32%),
        radial-gradient(circle at 85% 75%, rgba(79, 70, 229, .25), transparent 34%),
        #0b1631;
}

.ylm-dark .ylm-section-heading h2,
.ylm-dark .ylm-section-heading > p:not(.ylm-eyebrow) { color: #fff; }
.ylm-dark .ylm-eyebrow { color: #7dd3fc; }

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

.ylm-role-card {
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, .2);
    border-radius: 24px;
    background: rgba(255, 255, 255, .07);
}

.ylm-role-image {
    height: 300px;
    overflow: hidden;
    background: rgba(255, 255, 255, .06);
}

.ylm-role-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.ylm-role-image.is-phone img {
    object-fit: contain;
}

.ylm-role-body { padding: 25px; }
.ylm-role-index { color: #7dd3fc; font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.ylm-role-body h3 { margin: 9px 0 10px; color: #fff; font-size: 22px; }
.ylm-role-body p { margin: 0; color: #cbd5e1; font-size: 14px; line-height: 1.8; }

.ylm-payment-copy {
    align-self: start;
}

.ylm-payment-options {
    margin-top: 30px;
    display: grid;
    gap: 14px;
}

.ylm-payment-option {
    padding: 20px;
    border: 1px solid var(--ylm-line);
    border-radius: 18px;
    background: #fff;
}

.ylm-payment-option.is-primary {
    border-color: rgba(79, 70, 229, .28);
    background: linear-gradient(135deg, #f7f7ff, #eff8ff);
}

.ylm-payment-option h3 { margin: 0 0 8px; color: var(--ylm-ink); font-size: 18px; }
.ylm-payment-option p { margin: 0; color: var(--ylm-muted); font-size: 14px; line-height: 1.75; }

.ylm-dual-shots,
.ylm-room-shots {
    min-height: 640px;
    position: relative;
}

.ylm-dual-shots .ylm-screenshot-frame,
.ylm-room-shots .ylm-screenshot-frame {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.ylm-dual-shots .ylm-screenshot-frame {
    height: 410px;
}

.ylm-dual-shots .ylm-screenshot-frame img,
.ylm-room-shots .ylm-screenshot-frame img {
    width: 100%;
}

.ylm-dual-shots .ylm-screenshot-frame img {
    height: 100%;
    object-fit: cover;
    object-position: 18% center;
}

.ylm-dual-shots .ylm-phone,
.ylm-room-shots .ylm-phone {
    width: 205px;
    right: 0;
    bottom: 0;
    left: auto;
    transform: none;
}

.ylm-operation-grid {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    gap: 76px;
    align-items: center;
}

.ylm-process {
    margin: 30px 0 0;
    padding: 0;
    display: grid;
    gap: 13px;
    list-style: none;
}

.ylm-process li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: center;
    color: var(--ylm-copy);
    font-size: 15px;
    font-weight: 700;
}

.ylm-process i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: var(--ylm-primary);
    background: #eef2ff;
    font-size: 20px;
}

.ylm-commerce-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.ylm-commerce-card {
    overflow: hidden;
    border: 1px solid var(--ylm-line);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(15, 23, 42, .08);
}

.ylm-commerce-card img {
    width: 100%;
    aspect-ratio: 640 / 1000;
    object-fit: cover;
    object-position: top;
}

.ylm-commerce-card h3 {
    margin: 0;
    padding: 18px;
    color: var(--ylm-ink);
    font-size: 17px;
    text-align: center;
}

.ylm-deploy-grid {
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: 56px;
}

.ylm-deploy-grid > .ylm-screenshot-frame {
    height: 520px;
}

.ylm-deploy-grid > .ylm-screenshot-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 42% top;
}

.yl-multi-page .site-footer-v2 {
    --bg-darker: #eef2ff;
    --bg-card: #ffffff;
    --border-color: #e0e7ff;
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #6b7280;
    --accent: #4f46e5;
}

.yl-multi-page .site-footer-v2 > .container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

.ylm-deploy-points {
    margin: 28px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    list-style: none;
}

.ylm-deploy-points li {
    padding: 15px 16px;
    border: 1px solid var(--ylm-line);
    border-radius: 15px;
    color: var(--ylm-copy);
    background: #fff;
    font-size: 14px;
    font-weight: 700;
}

.ylm-deploy-points i { margin-right: 8px; color: var(--ylm-primary); }

.ylm-delivery-steps {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.ylm-delivery-step {
    padding: 18px 14px;
    border-radius: 16px;
    color: #475569;
    background: #f8fafc;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
}

.ylm-delivery-step strong {
    display: block;
    margin-bottom: 7px;
    color: var(--ylm-primary);
    font-size: 20px;
}

.ylm-capability-list,
.ylm-faq-list {
    display: grid;
    gap: 14px;
}

.ylm-capability,
.ylm-faq {
    border: 1px solid var(--ylm-line);
    border-radius: 18px;
    background: #fff;
}

.ylm-capability summary,
.ylm-faq summary {
    min-height: 72px;
    padding: 20px 58px 20px 22px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--ylm-ink);
    cursor: pointer;
    list-style: none;
    font-size: 17px;
    font-weight: 800;
}

.ylm-capability summary::-webkit-details-marker,
.ylm-faq summary::-webkit-details-marker { display: none; }

.ylm-capability summary::after,
.ylm-faq summary::after {
    content: "+";
    width: 30px;
    height: 30px;
    position: absolute;
    right: 18px;
    top: 50%;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--ylm-primary);
    background: #eef2ff;
    transform: translateY(-50%);
}

.ylm-capability[open] summary::after,
.ylm-faq[open] summary::after { content: "−"; }

.ylm-capability summary i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--ylm-primary), var(--ylm-secondary));
    font-size: 18px;
}

.ylm-capability-body {
    padding: 0 22px 24px 74px;
}

.ylm-capability-body ul {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 24px;
    list-style: none;
}

.ylm-capability-body li {
    padding-left: 18px;
    position: relative;
    color: var(--ylm-muted);
    font-size: 14px;
    line-height: 1.7;
}

.ylm-capability-body li::before {
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    left: 0;
    top: .65em;
    border-radius: 50%;
    background: var(--ylm-secondary);
}

.ylm-faq-list { max-width: 900px; margin: 0 auto; }
.ylm-faq-answer { padding: 0 58px 22px 22px; color: var(--ylm-muted); font-size: 14px; line-height: 1.8; }

.ylm-final-cta {
    padding: 92px 0;
    color: #fff;
    background:
        radial-gradient(circle at 15% 20%, rgba(34, 211, 238, .35), transparent 30%),
        linear-gradient(135deg, #312e81 0%, #4f46e5 50%, #0284c7 100%);
}

.ylm-final-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.ylm-final-copy { max-width: 720px; }
.ylm-final-copy h2 { margin: 0; color: #fff; font-size: clamp(32px, 4vw, 50px); line-height: 1.18; }
.ylm-final-copy p { margin: 18px 0 0; color: #e0e7ff; font-size: 16px; line-height: 1.8; }
.ylm-final-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.ylm-final-actions .ylm-btn-primary { color: var(--ylm-primary); background: #fff; box-shadow: none; }
.ylm-final-actions .ylm-btn-secondary { color: #fff; border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.1); }

@media (max-width: 1100px) {
    .ylm-hero-grid { grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr); gap: 36px; }
    .ylm-phone { width: 150px; }
    .ylm-proof-chip { left: 155px; }
    .ylm-browser { width: 100%; height: 560px; }
    .ylm-case-screen { height: auto; }
}

@media (max-width: 920px) {
    .ylm-section { padding: 82px 0; }
    .ylm-hero { padding-top: 150px; }
    .ylm-hero-grid,
    .ylm-fit-grid,
    .ylm-split-grid,
    .ylm-operation-grid,
    .ylm-deploy-grid { grid-template-columns: 1fr; gap: 48px; }
    .ylm-hero-stage { min-height: 530px; }
    .ylm-browser { height: 500px; }
    .ylm-trust-grid { grid-template-columns: repeat(2, 1fr); }
    .ylm-trust-item { padding: 18px 20px; border-bottom: 1px solid #e8edf7; }
    .ylm-trust-item:first-child { padding-left: 20px; }
    .ylm-role-grid { grid-template-columns: 1fr; }
    .ylm-role-card { display: grid; grid-template-columns: minmax(280px, .9fr) 1fr; }
    .ylm-role-image { height: 320px; }
    .ylm-case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ylm-case-screen { height: auto; }
    .ylm-commerce-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ylm-final-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
    .ylm-container { width: min(100% - 32px, 1180px); }
    .ylm-section { padding: 68px 0; }
    .ylm-section-heading { margin-bottom: 32px; }
    .ylm-section-heading h2,
    .ylm-copy h2 { font-size: 31px; }
    .ylm-section-heading > p:not(.ylm-eyebrow),
    .ylm-copy > p { font-size: 16px; }
    .ylm-hero { min-height: auto; padding: 132px 0 64px; }
    .ylm-hero-copy h1 { font-size: 42px; }
    .ylm-hero-desc { font-size: 16px; }
    .ylm-hero-actions { flex-direction: column; }
    .ylm-hero-actions .ylm-btn { width: 100%; }
    .ylm-hero-stage { min-height: 390px; margin-top: 10px; }
    .ylm-browser { width: 100%; height: 300px; top: 0; }
    .ylm-phone { width: 116px; padding: 5px; border-radius: 21px; }
    .ylm-phone img { border-radius: 16px; }
    .ylm-phone-merchant { left: 4px; }
    .ylm-phone-consumer { right: 3px; }
    .ylm-proof-chip { left: 115px; bottom: 18px; max-width: 160px; padding: 12px; font-size: 11px; }
    .ylm-proof-chip strong { font-size: 13px; }
    .ylm-trust-grid { grid-template-columns: 1fr; }
    .ylm-trust-item { border-right: 0; }
    .ylm-scene-image img { min-height: 310px; }
    .ylm-case-grid { grid-template-columns: 1fr; }
    .ylm-case-screen { height: auto; }
    .ylm-role-card { display: block; }
    .ylm-role-image { height: 310px; }
    .ylm-dual-shots,
    .ylm-room-shots { min-height: 430px; }
    .ylm-dual-shots .ylm-screenshot-frame,
    .ylm-room-shots .ylm-screenshot-frame { width: 100%; }
    .ylm-dual-shots .ylm-screenshot-frame { height: 280px; }
    .ylm-dual-shots .ylm-phone,
    .ylm-room-shots .ylm-phone { width: 145px; }
    .ylm-deploy-grid > .ylm-screenshot-frame { height: 390px; }
    .yl-multi-page .site-footer-v2 > .container { width: min(1200px, calc(100% - 32px)); }
    .ylm-commerce-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .ylm-commerce-card h3 { padding: 14px 8px; font-size: 15px; }
    .ylm-deploy-points { grid-template-columns: 1fr; }
    .ylm-delivery-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ylm-capability summary,
    .ylm-faq summary { min-height: 64px; padding-left: 16px; font-size: 15px; }
    .ylm-capability-body { padding: 0 18px 20px; }
    .ylm-capability-body ul { grid-template-columns: 1fr; }
    .ylm-faq-answer { padding: 0 46px 20px 16px; }
    .ylm-final-cta { padding: 70px 0; }
    .ylm-final-actions { width: 100%; flex-direction: column; }
    .ylm-final-actions .ylm-btn { width: 100%; }
}

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