:root {
    --navy: #043574;
    --footer: #0f172a;
    --blue: #1a76c2;
    --green: #059669;
    --amber: #d97706;
    --ink: #161d1f;
    --ink-soft: #1e293b;
    --muted: #64748b;
    --muted-dark: #475569;
    --line: #e2e8f0;
    --line-soft: #e8f1f9;
    --paper: #f8fafc;
    --soft-blue: #fafcff;
    --white: #ffffff;
    --container: 1440px;
    --inner: 1376px;
    --content: 1296px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #f4fafd;
    font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.5;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: 81px;
    background: rgba(255, 255, 255, .95);
    border-bottom: 1px solid rgba(226, 232, 240, .9);
    backdrop-filter: blur(14px);
}

.nav-shell {
    width: min(var(--container), 100%);
    height: 80px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
}

.brand {
    display: block;
    width: 254px;
    height: 32px;
    flex: 0 0 254px;
    overflow: hidden;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

.brand img {
    width: auto;
    max-width: none;
    height: 100%;
    object-position: left center;
}

.footer-logo img {
    filter: brightness(0) invert(1);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: 96px;
    color: var(--muted-dark);
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
}

.nav-item {
    position: relative;
    height: 80px;
    display: inline-flex;
    align-items: center;
}

.nav-item > a {
    display: inline-flex;
    align-items: center;
    height: 80px;
}

.nav-item.has-children > a::after {
    content: "";
    width: 6px;
    height: 6px;
    margin-left: 6px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.desktop-nav a.active,
.desktop-nav a:hover,
.nav-item.active > a,
.nav-item:hover > a {
    color: var(--blue);
}

.nav-dropdown {
    position: absolute;
    top: 74px;
    left: 50%;
    width: 220px;
    display: grid;
    gap: 2px;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .14);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity .16s ease, transform .16s ease;
}

.nav-dropdown a {
    display: block;
    padding: 10px 12px;
    color: var(--ink-soft);
    border-radius: 6px;
    white-space: normal;
}

.nav-dropdown a:hover {
    color: var(--blue);
    background: #f1f8ff;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.header-cta,
.header-link,
.button,
.small-blue-button,
.mini-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 700;
    white-space: nowrap;
}

.header-cta {
    width: 136px;
    height: 36px;
    color: var(--white);
    background: var(--blue);
    font-size: 14px;
}

.header-link {
    width: 108px;
    height: 38px;
    color: var(--blue);
    border: 1px solid var(--blue);
    font-size: 14px;
}

.mobile-nav {
    display: none;
    margin-left: auto;
}

.mobile-nav summary {
    cursor: pointer;
    list-style: none;
    padding: 9px 12px;
    color: var(--blue);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.mobile-nav div {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    z-index: 80;
    max-height: calc(100vh - 88px);
    max-height: calc(100dvh - 88px);
    display: grid;
    gap: 12px;
    padding: 16px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .14);
    -webkit-overflow-scrolling: touch;
}

.mobile-child-link {
    padding-left: 16px;
    color: var(--muted);
    font-size: 13px;
}

.mobile-quick-nav {
    display: none;
}

.hero {
    position: relative;
    height: 744px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .45s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--hero-image) center top / auto 814px no-repeat;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30, 58, 138, .7) 0%, rgba(30, 58, 138, 0) 100%);
}

.hero-inner {
    position: relative;
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
    padding-top: 189.5px;
    color: var(--white);
    text-align: center;
}

.hero-eyebrow {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    margin-bottom: 18px;
    padding: 0 14px;
    color: rgba(255, 255, 255, .92);
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

.hero h1 {
    margin: 0;
    font-size: 44px;
    line-height: 1.4;
    font-weight: 700;
}

.hero p {
    width: min(650px, 100%);
    margin: 24px auto 0;
    color: rgba(255, 255, 255, .9);
    font-size: 18px;
    line-height: 1.65;
}

.hero-badges {
    width: fit-content;
    max-width: min(1076px, 100%);
    margin: 24px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.hero-badges span {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    color: var(--white);
    background: var(--blue);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 400;
}

.hero-badges span:nth-child(1) {
    width: auto;
}

.hero-badges span:nth-child(2) {
    width: auto;
}

.hero-badges span:nth-child(3) {
    width: auto;
}

.hero-badges span:nth-child(4) {
    width: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.hero-actions .button.primary {
    width: 210px;
    padding: 0;
    gap: 12px;
    font-weight: 400;
}

.hero-actions .button.primary::after {
    content: "";
    width: 16px;
    height: 16px;
    background: currentColor;
    clip-path: polygon(0 45%, 62% 45%, 62% 18%, 100% 50%, 62% 82%, 62% 55%, 0 55%);
}

.hero-actions .button.ghost {
    width: 188px;
    padding: 0;
    font-weight: 400;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 3;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.hero-dots button {
    width: 34px;
    height: 4px;
    padding: 0;
    background: rgba(255, 255, 255, .42);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
}

.hero-dots button.is-active {
    background: var(--white);
}

.button {
    height: 58px;
    padding: 0 40px;
    font-size: 16px;
}

.button.primary {
    color: var(--white);
    background: var(--blue);
}

.button.ghost {
    color: var(--white);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .45);
}

.home-shell {
    width: 100%;
    margin: 0 auto;
    padding-top: 90px;
    background: #f4fafd;
}

.figma-section {
    width: min(var(--inner), calc(100% - 48px));
    margin: 0 auto;
    background: var(--white);
    border: 1px solid #f1f5f9;
    border-radius: 32px;
    box-shadow: 0 18px 60px rgba(15, 23, 42, .06);
}

.figma-section + .figma-section {
    margin-top: 70px;
}

.section-head {
    width: min(1295px, calc(100% - 48px));
    height: 72px;
    margin: 51px auto 30px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.section-head.align-left {
    padding-top: 0;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--blue);
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
}

.section-head h2,
.section-title-center h2,
.about-copy h2,
.franchise-card h2,
.section h2,
.page-hero h1,
.contact-hero h1,
.detail-hero h1 {
    margin: 0;
    color: var(--ink);
    font-weight: 700;
}

.section-head h2,
.section-title-center h2,
.about-copy h2 {
    font-size: 36px;
    line-height: 56px;
}

.section-head h2 {
    font-size: 34px;
    line-height: 48px;
    font-weight: 500;
}

.section-title-center h2 {
    font-size: 34px;
    line-height: 56px;
    font-weight: 500;
}

.section-head.align-left h2 {
    display: flex;
    align-items: center;
    gap: 11px;
}

.section-head.align-left h2::before {
    content: "";
    width: 4px;
    height: 24px;
    background: var(--blue);
    border-radius: 2px;
}

.small-blue-button {
    width: 161px;
    height: 44px;
    justify-content: flex-start;
    padding: 0 15px 0 25px;
    color: var(--white);
    background: var(--blue);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 400;
}

.small-blue-button::after {
    content: "";
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    margin-left: 12px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.7 2.3 11.4 6l-3.7 3.7-1.1-1.1 1.8-1.8H.6V5.2h7.8L6.6 3.4l1.1-1.1Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.7 2.3 11.4 6l-3.7 3.7-1.1-1.1 1.8-1.8H.6V5.2h7.8L6.6 3.4l1.1-1.1Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
}

.small-blue-button.large {
    width: 142px;
    height: 53px;
    font-size: 16px;
}

.center-action .small-blue-button.large {
    justify-content: center;
    padding: 0 18px;
}

.section-title-center {
    width: min(var(--content), calc(100% - 48px));
    height: 84px;
    margin: 51px auto 0;
    padding-top: 0;
    text-align: center;
}

.section-title-center .eyebrow {
    margin-bottom: 4px;
}

.section-title-center > span {
    display: block;
    width: 64px;
    height: 4px;
    margin: 4px auto 0;
    background: var(--blue);
}

.solutions-section {
    height: 1419px;
}

.solution-grid {
    width: min(1294px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
}

.solution-card {
    height: 587.4px;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--soft-blue);
    border: 0;
    outline: 2px solid #f1f5f9;
    outline-offset: -2px;
    border-radius: 24px;
    box-shadow: 0 16px 44px rgba(15, 23, 42, .05);
}

.solution-body {
    height: 278.4px;
    min-height: 0;
    order: 1;
    padding: 32px 32px 18px;
}

.solution-title-row {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 15px;
    align-items: start;
    min-height: 48px;
}

.solution-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--blue);
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(26, 118, 194, .08);
}

.solution-icon svg {
    width: 21px;
    height: 21px;
}

.solution-body h3 {
    margin: 9.2px 0 0;
    color: var(--footer);
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
}

.solution-body p {
    margin: 14.8px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 26px;
}

.solution-media {
    position: relative;
    height: 309px;
    order: 2;
    overflow: hidden;
}

.solution-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .5);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}

.solution-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.solution-image-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 24px;
    color: #6b7f95;
    background: linear-gradient(135deg, #edf6ff, #ffffff);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    min-height: 34px;
    margin-top: 14.8px;
    padding-top: 5px;
}

.tag-row span,
.tag-row a,
.case-tags span,
.case-tags a,
.article-tags span,
.article-tags a {
    display: inline-flex;
    align-items: center;
    min-height: 29px;
    padding: 0 12px;
    color: var(--white);
    background: var(--blue);
    border-radius: 6px;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
}

.solution-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    min-height: 36px;
    margin-top: 14.8px;
    padding-top: 12px;
    color: #666666;
    font-size: 16px;
    line-height: 1.35;
}

.solution-actions {
    position: absolute;
    left: 50%;
    top: 131px;
    z-index: 2;
    width: 260px;
    height: 47px;
    display: flex;
    gap: 0;
    overflow: hidden;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.solution-card:hover .solution-media::after,
.solution-card:focus-within .solution-media::after {
    opacity: 1;
}

.solution-card:hover .solution-actions,
.solution-card:focus-within .solution-actions {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.mini-button {
    width: 130px;
    height: 47px;
    font-size: 15px;
    font-weight: 400;
    border-radius: 0;
}

.mini-button.primary {
    color: var(--white);
    background: var(--blue);
}

.mini-button.dark {
    color: var(--white);
    background: #3b3b3b;
}

.mini-button.outline {
    color: var(--blue);
    border: 1px solid var(--blue);
}

.process-section {
    min-height: 639px;
    height: auto;
    padding-bottom: 72px;
}

.process-panel {
    position: relative;
    width: min(1294px, calc(100% - 48px));
    min-height: 418px;
    margin: 35px auto 0;
    padding: 30px 24px 0;
}

.process-line {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 90px;
    height: 2px;
    background: var(--line-soft);
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 28px;
}

.process-step {
    min-height: 288px;
    text-align: center;
}

.process-icon-card {
    position: relative;
    width: 122px;
    height: 122px;
    margin: 0 auto 28px;
    padding: 2px;
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    box-shadow: 0 18px 35px rgba(15, 23, 42, .12);
}

.process-icon-card img {
    width: 116px;
    height: 116px;
    object-fit: cover;
    border-radius: 999px;
}

.process-image-placeholder {
    width: 116px;
    height: 116px;
    display: grid;
    place-items: center;
    color: var(--blue);
    background: #edf6ff;
    border-radius: 999px;
    font-family: Inter, Arial, sans-serif;
    font-size: 28px;
    font-weight: 800;
}

.process-icon-card span {
    position: absolute;
    left: -8px;
    top: -8px;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--blue);
    border-radius: 999px;
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    font-weight: 800;
}

.process-step h3 {
    margin: 0 0 16px;
    color: #191c1d;
    font-size: 22px;
    line-height: 1.35;
}

.process-description {
    margin: -6px auto 14px;
    max-width: 230px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.55;
}

.process-step ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
    color: #414751;
    font-size: 15px;
}

.process-cta {
    width: 232px;
    height: 60px;
    margin: 38px auto 0;
    justify-content: flex-start;
    padding: 0 32px;
    display: flex;
    font-size: 18px;
    font-weight: 400;
}

.process-cta::after {
    content: "";
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    margin-left: 8px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.7 3.3 13.4 8l-4.7 4.7-1.4-1.4L9.6 9H2V7h7.6L7.3 4.7l1.4-1.4Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.7 3.3 13.4 8l-4.7 4.7-1.4-1.4L9.6 9H2V7h7.6L7.3 4.7l1.4-1.4Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
}

.product-section {
    height: 1459px;
}

.product-grid {
    width: min(var(--content), calc(100% - 48px));
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    row-gap: 32px;
}

.product-card {
    height: 560px;
    min-height: 0;
    background: var(--white);
    border: 0;
    border-radius: 24px;
    overflow: hidden;
}

.product-media {
    position: relative;
    height: 256px;
    margin: 25px;
    display: grid;
    place-items: center;
    background: var(--paper);
    border-radius: 16px;
    overflow: hidden;
}

.product-media img {
    width: min(256px, 82%);
    height: min(256px, 90%);
    object-fit: contain;
}

.product-badge {
    position: absolute;
    left: 16px;
    top: 14px;
    min-height: 28px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.product-badge.blue {
    color: var(--blue);
    background: #e8f3fb;
}

.product-badge.green {
    color: var(--green);
    background: #e8f7ef;
}

.product-badge.amber {
    color: var(--amber);
    background: #fff6df;
}

.product-detail-button {
    position: absolute;
    left: 50%;
    top: 177px;
    width: 120px;
    height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--blue);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 400;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.product-card:hover .product-detail-button,
.product-card:focus-within .product-detail-button {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.product-body {
    height: 230px;
    padding: 0 25px 25px;
    text-align: center;
    overflow: hidden;
}

.product-series {
    margin: 0 0 8px;
    color: #94a3b8;
    font-size: 10px;
}

.product-body h3 {
    margin: 0;
    color: var(--ink-soft);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.35;
}

.product-body ul {
    min-height: 126px;
    margin: 18px 0 0;
    padding: 16px 20px;
    display: grid;
    gap: 18px;
    list-style: none;
    text-align: left;
    color: #5e5c5c;
    background: var(--paper);
    border-radius: 10px;
    font-size: 15px;
    line-height: 15px;
    letter-spacing: .0667px;
}

.product-body li {
    display: flex;
    align-items: baseline;
    white-space: nowrap;
}

.product-body li strong {
    flex: 0 0 auto;
    color: #252525;
    font-weight: 500;
}

.product-body li span {
    color: #5e5c5c;
    font-weight: 400;
}

.product-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    color: var(--muted);
    font-size: 16px;
}

.product-foot strong {
    color: var(--blue);
    font-size: 18px;
    font-weight: 400;
}

.center-action {
    display: flex;
    justify-content: center;
    padding-top: 40px;
}

.cases-section {
    height: 1323px;
}

.case-grid {
    width: min(1294px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
}

.case-card {
    position: relative;
    min-height: 347.14px;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(15, 23, 42, .92) 0%, rgba(15, 23, 42, .46) 50%, rgba(15, 23, 42, 0) 100%),
        var(--case-image) center / cover no-repeat;
    border-radius: 40px;
}

.case-overlay {
    position: absolute;
    inset: 0;
    padding: 0;
    display: block;
}

.case-tags {
    position: absolute;
    left: 48px;
    top: 48px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0;
}

.case-tags span,
.case-tags a {
    width: 90px;
    min-height: 31px;
    justify-content: center;
    padding: 0;
    color: #ebebeb;
    background: rgba(255, 255, 255, .16);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 400;
    backdrop-filter: blur(8px);
}

.case-card h3 {
    position: absolute;
    left: 48px;
    top: 89px;
    margin: 0;
    max-width: 470px;
    color: var(--white);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.25;
}

.case-card time {
    position: absolute;
    left: 48px;
    top: 184.2px;
    margin: 0;
    color: rgba(255, 255, 255, .9);
    font-size: 16px;
    line-height: 1;
}

.case-overlay > a {
    position: absolute;
    left: 48px;
    top: 255.14px;
    width: 122px;
    height: 44px;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--footer);
    background: var(--white);
    border-radius: 16px;
    font-size: 14px;
    font-weight: 400;
}

.faq-section {
    height: 1139px;
}

.faq-groups {
    width: min(1294px, calc(100% - 48px));
    margin: 30px auto 0;
    display: grid;
    gap: 40px;
}

.faq-category h3 {
    position: relative;
    height: 48px;
    margin: 0 0 25px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #1a1c1e;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.faq-category h3::before {
    content: "";
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    background: rgba(39, 77, 140, .1);
    border-radius: 999px;
}

.faq-category h3::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 13px;
    width: 18px;
    height: 22px;
    background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='22' viewBox='0 0 24 24' fill='none' stroke='%23274d8c' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 2v7.31'/%3E%3Cpath d='M14 9.31V2'/%3E%3Cpath d='M8.5 2h7'/%3E%3Cpath d='M14 9.31a6.5 6.5 0 1 1-4 0'/%3E%3Cpath d='M5.5 16h13'/%3E%3C/svg%3E");
}

.faq-category:nth-child(2) h3::before {
    background: rgba(94, 246, 230, .2);
}

.faq-category:nth-child(2) h3::after {
    left: 15px;
    top: 14px;
    width: 18px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='20' viewBox='0 0 24 24' fill='none' stroke='%23006a62' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='14' height='18' x='5' y='4' rx='2'/%3E%3Cpath d='M9 2h6v4H9z'/%3E%3Cpath d='m9 14 2 2 4-4'/%3E%3C/svg%3E");
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-list details {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
}

.faq-list summary {
    position: relative;
    min-height: 76.8px;
    cursor: pointer;
    list-style: none;
    padding: 24px 56px 24px 24px;
    color: var(--navy);
    font-size: 18px;
    font-weight: 400;
    line-height: 28.8px;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "";
    position: absolute;
    right: 24px;
    top: 33px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--navy);
    border-bottom: 2px solid var(--navy);
    transform: rotate(45deg);
    transition: transform .2s ease;
}

.faq-list details[open] summary::after {
    transform: rotate(225deg);
}

.faq-list p {
    margin: 0;
    padding: 0 24px 24px;
    color: #414751;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
}

.knowledge-section {
    height: 1634px;
}

.article-list {
    width: min(var(--content), calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    gap: 32px;
}

.article-card {
    height: 334px;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 424px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
}

.article-card.reverse {
    grid-template-columns: 424px minmax(0, 1fr);
}

.article-card.reverse .article-image {
    order: -1;
}

.article-copy {
    position: relative;
    padding: 40px;
    min-width: 0;
    overflow: hidden;
}

.article-meta {
    height: 15px;
    display: flex;
    align-items: center;
    gap: 24px;
    color: #94a3b8;
    font-size: 10px;
}

.article-meta span {
    color: var(--blue);
    font-weight: 700;
}

.article-copy h3 {
    max-width: 790px;
    margin: 10px 0 16px;
    color: var(--ink);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.35;
}

.article-copy p {
    max-width: 599px;
    height: 74px;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.article-tags span {
    background: var(--blue);
}

.read-link {
    position: absolute;
    left: 40px;
    top: 256.75px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
    color: var(--footer);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.read-link::after {
    content: "";
    width: 11.08px;
    height: 5.25px;
    flex: 0 0 11.08px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='12' height='6' viewBox='0 0 12 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.9.2 11.7 3 8.9 5.8l-.7-.7 1.55-1.6H0v-1h9.75L8.2.9l.7-.7Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg width='12' height='6' viewBox='0 0 12 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.9.2 11.7 3 8.9 5.8l-.7-.7 1.55-1.6H0v-1h9.75L8.2.9l.7-.7Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
}

.article-image {
    min-height: 332px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-section {
    background: var(--white);
    margin-top: 90px;
}

.about-shell {
    width: min(var(--container), calc(100% - 48px));
    min-height: 848px;
    margin: 0 auto;
    padding: 100px 32px;
    display: grid;
    grid-template-columns: 648px 648px;
    gap: 80px;
    align-items: center;
}

.about-image {
    overflow: hidden;
    border-radius: 40px;
}

.about-image img {
    width: 648px;
    height: 648px;
    object-fit: cover;
}

.about-copy {
    min-height: 557px;
}

.about-copy > p:not(.eyebrow) {
    margin: 16px 0 0;
    color: var(--muted-dark);
    font-size: 18px;
    line-height: 31.5px;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
}

.about-badges span {
    height: 48px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    color: var(--white);
    background: var(--blue);
    border-radius: 10px;
    font-weight: 400;
}

.about-badges span:first-child {
    width: 275px;
}

.about-badges span:nth-child(2) {
    width: 292px;
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
}

.about-actions a {
    width: 222.81px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--blue);
    border: 1px solid var(--blue);
    border-radius: 16px;
    font-weight: 400;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 194.67px);
    gap: 32px;
    margin-top: 16px;
}

.about-stats strong,
.about-stats span {
    display: block;
    text-align: left;
}

.about-stats strong {
    color: var(--blue);
    font-size: 36px;
    line-height: 40px;
}

.about-stats span {
    margin-top: 8px;
    color: #94a3b8;
    font-size: 16px;
    line-height: 15px;
}

.franchise-section {
    height: 641px;
    min-height: 641px;
    padding: 100px 0;
}

.franchise-card {
    width: min(var(--container), calc(100% - 48px));
    height: 441px;
    min-height: 441px;
    margin: 0 auto;
    padding: 80px 272px;
    text-align: center;
    color: var(--white);
    background:
        linear-gradient(110deg, rgba(4, 53, 116, .96) 0%, rgba(6, 77, 150, .9) 52%, rgba(26, 118, 194, .74) 100%),
        var(--franchise-image) center / cover no-repeat;
    border-radius: 64px;
    overflow: hidden;
}

.franchise-card h2 {
    width: 832px;
    height: 72px;
    margin: 0 auto;
    color: var(--white);
    font-size: 50px;
    font-weight: 500;
    line-height: 72px;
}

.franchise-card p {
    width: 832px;
    height: 64px;
    margin: 0 auto;
    padding-top: 8px;
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
}

.franchise-form {
    position: relative;
    width: 832px;
    height: 100px;
    margin: 0 auto;
    display: block;
}

.franchise-form input:not([type="hidden"]) {
    position: absolute;
    left: 123.195px;
    top: 34px;
    width: 384px;
    height: 66px;
    min-width: 0;
    padding: 0 33px;
    color: var(--white);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 16px;
    outline: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
}

.franchise-form input::placeholder {
    color: rgba(255, 255, 255, .5);
}

.franchise-form button {
    position: absolute;
    left: 523.195px;
    top: 34px;
    width: 185.61px;
    height: 66px;
    color: var(--blue);
    background: var(--white);
    border: 0;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    cursor: pointer;
}

.franchise-card > span {
    display: block;
    width: 832px;
    height: 45px;
    margin: 0 auto;
    padding-top: 30px;
    color: rgba(255, 255, 255, .4);
    font-size: 10px;
    font-weight: 700;
    line-height: 15px;
}

.news-banner,
.contact-banner {
    position: relative;
    height: 700px;
    color: var(--white);
    overflow: hidden;
}

.news-banner {
    background:
        linear-gradient(90deg, rgba(15, 23, 42, .72), rgba(15, 23, 42, .35)),
        var(--news-hero-image) center / cover no-repeat;
}

.contact-banner {
    color: var(--ink);
    background: var(--contact-hero-image) center / cover no-repeat;
}

.contact-banner::before {
    content: "";
    position: absolute;
    inset: 0;
}

.news-banner > div,
.contact-banner > div {
    position: relative;
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
    padding: 250px 32px 0;
}

.news-banner > div {
    padding-top: 273px;
}

.news-banner p,
.contact-banner p {
    margin: 0 0 18px;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
}

.news-banner p {
    color: #d2e4ff;
}

.contact-banner p {
    color: var(--blue);
}

.news-banner h1,
.contact-banner h1 {
    margin: 0;
    max-width: 768px;
    font-size: 60px;
    line-height: 1.25;
    font-weight: 700;
}

.news-banner h1 {
    color: var(--white);
}

.contact-banner h1 {
    color: var(--ink);
}

.contact-banner span {
    display: block;
    max-width: 576px;
    margin-top: 24px;
    color: #3d3d3d;
    font-size: 18px;
    line-height: 30px;
}

.category-nav {
    height: 71px;
    width: 100%;
    margin: 0;
    padding: 0 max(24px, calc((100% - var(--container)) / 2));
    display: flex;
    align-items: center;
    gap: 48px;
    color: var(--muted-dark);
    background: var(--white);
    border-bottom: 1px solid var(--line);
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
}

.category-nav a.active,
.category-nav a:hover {
    color: var(--blue);
}

.mobile-nav a.active {
    color: var(--blue);
    font-weight: 600;
}

.section.news-section {
    width: min(var(--container), calc(100% - 48px));
    padding: 60px 0 0;
}

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

.content-card.news-card {
    height: 501.05px;
    min-height: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.content-card.news-card img {
    height: 261.05px;
    aspect-ratio: auto;
}

.content-card.news-card div {
    height: 240px;
    min-height: 0;
    padding: 28px 24px 24px;
}

.content-card.news-card time {
    display: block;
    color: #485e88;
    font-size: 12px;
    line-height: 12px;
    font-weight: 700;
}

.content-card.news-card h2 {
    height: 60px;
    min-height: 0;
    margin: 16px 0 0;
    overflow: hidden;
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
}

.content-card.news-card p {
    height: 48px;
    min-height: 0;
    margin: 16px 0 0;
    overflow: hidden;
    color: #414751;
    font-size: 16px;
    line-height: 24px;
}

.content-card.news-card a {
    height: 24px;
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #005d9e;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.content-card.news-card a::after {
    content: "↗";
    font-size: 13px;
    line-height: 1;
}

.news-pager-shell {
    width: 512px;
    height: 98px;
    margin: 0 auto 128px;
    padding-top: 50px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
}

.news-pager-shell a,
.news-pager-shell span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #414751;
    background: var(--white);
    border: 1px solid var(--line);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.news-pager-shell .active {
    color: var(--white);
    background: var(--blue);
    border-color: var(--blue);
    font-weight: 700;
}

.news-pager-shell .dots {
    width: 28.17px;
    border-color: transparent;
    background: transparent;
}

.contact-grid-section {
    width: min(var(--container), calc(100% - 48px));
    height: 584px;
    margin: 90px auto 0;
    display: grid;
    grid-template-columns: 826.67px 581.33px;
    gap: 32px;
    align-items: start;
}

.prototype-contact-form,
.contact-info-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: none;
}

.prototype-contact-form {
    height: 586px;
    padding: 48px;
    overflow: visible;
}

.prototype-contact-form h2,
.contact-info-card h2 {
    margin: 0;
    color: var(--ink);
    font-size: 30px;
    line-height: 42px;
}

.contact-form-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px 24px;
}

.prototype-contact-form label {
    display: grid;
    gap: 8px;
}

.prototype-contact-form label span {
    color: #717782;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.prototype-contact-form input,
.prototype-contact-form select,
.prototype-contact-form textarea {
    width: 100%;
    height: 40px;
    min-height: 40px;
    padding: 8px 13px;
    border: 1px solid var(--line);
    border-radius: 0;
    color: var(--ink);
    background: var(--paper);
}

.message-field {
    margin-top: 15px;
}

.prototype-contact-form textarea {
    height: 115px;
    min-height: 115px;
    padding-top: 9px;
    resize: none;
}

.prototype-contact-form button {
    width: 100%;
    height: 61px;
    margin-top: 24px;
    color: var(--white);
    background: var(--blue);
    border: 0;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
}

.contact-info-column {
    display: grid;
    grid-template-rows: 212px 354px;
    gap: 20px;
}

.contact-info-card {
    padding: 24px;
}

.headquarters-card h2 {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 24px;
    line-height: 36px;
    font-weight: 400;
}

.headquarters-card h2::before,
.info-mark {
    content: "";
    flex: 0 0 auto;
    display: inline-block;
    background: #005d9e;
}

.headquarters-card h2::before {
    width: 25px;
    height: 22.5px;
    border-radius: 3px;
}

.headquarters-list {
    margin-top: 24px;
    display: grid;
    gap: 16px;
}

.headquarters-list p {
    min-height: 24px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #414751;
    font-size: 16px;
    line-height: 24px;
}

.info-mark {
    background: #9fccff;
}

.location-mark {
    width: 16px;
    height: 20px;
    border-radius: 8px 8px 10px 10px;
}

.phone-mark {
    width: 18px;
    height: 18px;
    border-radius: 999px;
}

.mail-mark {
    width: 20px;
    height: 16px;
    border-radius: 3px;
}

.contact-info-card a {
    color: #414751;
}

.channels {
    padding: 25px;
}

.channels h2 {
    color: #005d9e;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
}

.hotline-card {
    height: 76px;
    margin-top: 16px;
    padding: 16px;
    position: relative;
    background: #eff6ff;
    border-radius: 4px;
}

.hotline-card::after {
    content: "↗";
    position: absolute;
    right: 16px;
    top: 30px;
    color: #005d9e;
    font-size: 16px;
    line-height: 16px;
}

.hotline-card span,
.hotline-card strong {
    display: block;
}

.hotline-card span {
    color: #181c21;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

.hotline-card strong {
    color: #717782;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}

.qr-row {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.qr-row figure {
    height: 166px;
    margin: 0;
    padding: 16px;
    text-align: center;
    background: #eff6ff;
    border-radius: 4px;
}

.qr-row img {
    width: 100px;
    height: 100px;
    margin: 10px auto 0;
    object-fit: contain;
}

.qr-row figcaption {
    margin-top: 10px;
    color: #181c21;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

.contact-map {
    width: min(var(--container), calc(100% - 48px));
    height: 472px;
    margin: 90px auto;
    overflow: hidden;
    border-radius: 20px;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero,
.contact-hero,
.detail-hero,
.section {
    width: min(var(--content), calc(100% - 48px));
    margin: 0 auto;
}

.site-breadcrumb {
    width: min(var(--content), calc(100% - 48px));
    margin: 0 auto;
    padding: 22px 0 0;
}

.site-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.site-breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #708198;
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
}

.site-breadcrumb li + li::before {
    content: "/";
    color: #b6c4d3;
}

.site-breadcrumb a {
    color: inherit;
}

.site-breadcrumb a:hover {
    color: var(--blue);
}

.site-breadcrumb span[aria-current="page"] {
    color: #22314a;
}

.page-hero,
.contact-hero,
.detail-hero {
    padding: 92px 0 54px;
}

.catalog-page-hero {
    width: min(var(--content), calc(100% - 48px));
    padding: 82px 0 48px;
}

.catalog-page-hero h1 {
    font-size: 50px;
    line-height: 72px;
    font-weight: 700;
}

.catalog-page-hero p:not(.eyebrow) {
    max-width: 860px;
    margin-top: 16px;
    color: #485e88;
    font-size: 18px;
    line-height: 32px;
}

.page-hero h1,
.contact-hero h1,
.detail-hero h1 {
    font-size: 44px;
    line-height: 1.3;
}

.page-hero p:not(.eyebrow),
.contact-hero p,
.detail-hero p {
    max-width: 720px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.section {
    padding: 50px 0 100px;
}

.section.catalog-section {
    width: min(var(--container), calc(100% - 48px));
    padding: 0 0 128px;
}

.catalog-product-grid {
    margin-top: 0;
}

.catalog-solution-grid,
.catalog-case-grid {
    width: min(1294px, calc(100% - 48px));
}

.catalog-solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    margin-top: 0;
}

.catalog-case-grid {
    gap: 48px;
    margin-top: 0;
}

.catalog-product-grid .product-card,
.catalog-solution-grid .solution-card,
.catalog-case-grid .case-card {
    box-shadow: 0 16px 44px rgba(15, 23, 42, .05);
}

.catalog-solution-grid .solution-card,
.catalog-case-grid .case-card {
    border: 0;
}

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

.filter-bar {
    width: min(var(--container), calc(100% - 48px));
    margin: 32px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-bar a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    color: var(--ink-soft);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
}

.filter-bar a.active,
.filter-bar a:hover {
    color: var(--white);
    background: var(--blue);
    border-color: var(--blue);
}

.content-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.content-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.content-card div {
    padding: 24px;
}

.content-card span,
.detail-meta span {
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
}

.content-card h2,
.content-card h3 {
    margin: 8px 0 10px;
    color: var(--ink);
    font-size: 22px;
    line-height: 1.35;
}

.content-card p,
.rich-content,
.detail-aside p {
    color: var(--muted);
}

.listing-grid .content-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.listing-grid .content-card > div {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.listing-grid .content-card p {
    height: 78px;
    margin: 0;
    overflow: hidden;
    line-height: 26px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.listing-grid .content-card > div > a:last-child {
    margin-top: auto;
}

.content-card a {
    display: inline-block;
    margin-top: 14px;
    color: var(--footer);
    font-weight: 800;
}

.item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.item-tags a {
    margin-top: 0;
    padding: 5px 9px;
    color: var(--blue);
    background: #f1f8ff;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
}

.contact-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 460px;
    gap: 48px;
    align-items: start;
    padding-bottom: 100px;
}

.lead-form {
    display: grid;
    gap: 14px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, .08);
}

.lead-form label {
    display: grid;
    gap: 7px;
}

.lead-form span {
    color: var(--muted-dark);
    font-size: 13px;
    font-weight: 800;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 13px;
    color: var(--ink);
    background: #fbfdfe;
}

.lead-form textarea {
    resize: vertical;
}

.form-status,
.form-error {
    padding: 12px 14px;
    border-radius: 8px;
    font-weight: 700;
}

.form-status {
    color: #0a6b43;
    background: #e8f8ef;
}

.form-error {
    color: #9f1d1d;
    background: #fff0f0;
}

.detail-hero {
    width: min(var(--container), calc(100% - 48px));
    min-height: 620px;
    margin-top: 36px;
    padding: 64px;
    display: grid;
    grid-template-columns: minmax(0, 640px) minmax(420px, 1fr);
    gap: 96px;
    align-items: center;
    background: var(--white);
    border: 1px solid #f1f5f9;
    border-radius: 32px;
    box-shadow: 0 18px 60px rgba(15, 23, 42, .06);
}

.detail-hero img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    background: var(--paper);
    border-radius: 24px;
}

.detail-hero-missing-media {
    min-height: auto;
    grid-template-columns: minmax(0, 760px);
}

.detail-hero-product img {
    object-fit: contain;
}

.breadcrumb {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--blue);
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

.detail-hero h1 {
    max-width: 640px;
    font-size: 50px;
    line-height: 1.2;
    font-weight: 700;
}

.detail-hero p {
    max-width: 640px;
    margin-top: 24px;
    color: #485e88;
    font-size: 18px;
    line-height: 32px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.detail-meta span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    color: var(--blue);
    background: #eff6ff;
    border-radius: 8px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
}

.detail-meta a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    color: #0a6b43;
    background: #e8f8ef;
    border-radius: 8px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
}

.detail-body {
    width: min(var(--container), calc(100% - 48px));
    display: grid;
    grid-template-columns: minmax(0, 896px) 384px;
    gap: 64px;
    align-items: start;
    padding: 40px 0 120px;
}

.rich-content {
    min-width: 0;
    min-height: 320px;
    padding: 48px;
    background: var(--white);
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    box-shadow: 0 18px 60px rgba(15, 23, 42, .04);
    font-size: 18px;
    line-height: 1.85;
    overflow-wrap: break-word;
}

.rich-content img,
.rich-content video,
.rich-content iframe {
    max-width: 100%;
    height: auto;
}

.rich-content table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
}

.rich-content p {
    margin: 0 0 18px;
}

.rich-content .lead {
    margin: 0 0 22px;
    color: var(--navy);
    font-size: 1.18em;
    line-height: 1.75;
    font-weight: 500;
}

.rich-content small {
    font-size: .86em;
    line-height: 1.7;
}

.rich-content h2,
.rich-content h3 {
    scroll-margin-top: 96px;
}

.article-toc {
    margin: 0 0 28px;
    overflow: hidden;
    background: #fbfdff;
    border: 1px solid #dce6f0;
    border-radius: 12px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .7);
}

.article-toc-head {
    min-height: 64px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 28px;
    color: var(--navy);
    background: #f7fbff;
    border-bottom: 1px solid #dce6f0;
}

.article-toc-head span {
    width: 18px;
    height: 18px;
    display: inline-block;
    color: var(--blue);
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 6h12'/%3E%3Cpath d='M8 12h12'/%3E%3Cpath d='M8 18h12'/%3E%3Cpath d='M4 6h.01'/%3E%3Cpath d='M4 12h.01'/%3E%3Cpath d='M4 18h.01'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 6h12'/%3E%3Cpath d='M8 12h12'/%3E%3Cpath d='M8 18h12'/%3E%3Cpath d='M4 6h.01'/%3E%3Cpath d='M4 12h.01'/%3E%3Cpath d='M4 18h.01'/%3E%3C/svg%3E") center / contain no-repeat;
}

.article-toc-head strong {
    font-size: 18px;
    line-height: 26px;
    font-weight: 800;
}

.article-toc ol {
    list-style: none;
    max-height: 360px;
    margin: 0;
    padding: 24px 28px;
    display: grid;
    gap: 12px;
    overflow: auto;
}

.article-toc li {
    margin: 0;
}

.article-toc li.toc-level-3 {
    padding-left: 28px;
}

.article-toc a {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    color: #405980;
    font-size: 15px;
    line-height: 24px;
    font-weight: 700;
}

.article-toc a span {
    min-width: 30px;
    height: 22px;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #315b8f;
    background: #e7eef7;
    border-radius: 999px;
    font-size: 12px;
    line-height: 22px;
    font-weight: 800;
}

.article-toc a:hover {
    color: var(--blue);
}

.answer-box,
.detail-module {
    margin-top: 28px;
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.answer-box {
    margin-top: 0;
    margin-bottom: 24px;
    background: #f1f8ff;
    border-color: #cfe6fb;
}

.answer-box strong,
.detail-module h2 {
    display: block;
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 20px;
    font-weight: 800;
}

.spec-table {
    display: grid;
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    overflow: hidden;
}

.spec-table div {
    display: grid;
    grid-template-columns: 180px 1fr;
    border-bottom: 1px solid var(--line-soft);
}

.spec-table div:last-child {
    border-bottom: 0;
}

.spec-table span,
.spec-table strong {
    padding: 12px 14px;
    font-size: 14px;
}

.spec-table span {
    color: var(--muted);
    background: #f8fbff;
}

.spec-table strong {
    color: var(--ink-soft);
}

.feature-list,
.step-grid,
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.feature-list span,
.step-grid span,
.related-grid a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 12px 14px;
    color: var(--ink-soft);
    background: #f8fbff;
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
}

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

.case-summary-grid div {
    padding: 18px;
    background: #f8fbff;
    border: 1px solid var(--line-soft);
    border-radius: 8px;
}

.case-summary-grid span,
.related-grid span {
    display: block;
    margin-bottom: 6px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
}

.case-summary-grid p {
    margin: 0;
}

.faq-list.compact {
    gap: 10px;
}

.related-grid a {
    display: block;
}

.related-grid a:hover {
    color: var(--blue);
    border-color: #b8daf7;
}

.search-section,
.tag-index-section,
.tag-detail-section {
    width: min(var(--container), calc(100% - 48px));
    padding-top: 0;
}

.search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 140px;
    gap: 14px;
    align-items: end;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, .06);
}

.search-form label {
    display: grid;
    gap: 8px;
}

.search-form span {
    color: var(--muted-dark);
    font-size: 13px;
    font-weight: 800;
}

.search-form input {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    color: var(--ink);
    background: #fbfdfe;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.search-summary {
    margin: 22px 0 0;
    color: var(--muted);
    font-weight: 700;
}

.result-section {
    margin-top: 42px;
}

.result-section > h2,
.tag-group h2 {
    margin: 0 0 18px;
    color: var(--ink);
    font-size: 28px;
    line-height: 1.3;
}

.result-list {
    display: grid;
    gap: 14px;
}

.result-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 116px;
    gap: 24px;
    align-items: center;
    padding: 20px 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.result-item span {
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
}

.result-item h3 {
    margin: 6px 0 8px;
    color: var(--ink);
    font-size: 20px;
    line-height: 1.35;
}

.result-item p {
    max-height: 78px;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    line-height: 26px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.result-item > a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--blue);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
}

.tag-group {
    margin-top: 42px;
}

.tag-group:first-child {
    margin-top: 0;
}

.tag-cloud {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.tag-cloud a {
    min-height: 104px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.tag-cloud strong {
    color: var(--ink);
    font-size: 18px;
}

.tag-cloud span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.tag-cloud a:hover {
    border-color: #b8daf7;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .08);
}

.detail-aside {
    position: sticky;
    top: 96px;
    min-width: 0;
    padding: 32px;
    background: var(--white);
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    box-shadow: 0 18px 60px rgba(15, 23, 42, .06);
}

.detail-aside h2 {
    margin: 0 0 16px;
    color: var(--ink);
    font-size: 28px;
    line-height: 40px;
    font-weight: 700;
}

.detail-aside p {
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 28px;
}

.detail-aside .button {
    width: 100%;
}

.figma-page-hero {
    position: relative;
    height: 700px;
    overflow: hidden;
    background: var(--page-hero-image) center / cover no-repeat;
}

.figma-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(248, 250, 255, .96) 0%, rgba(248, 250, 255, .68) 46%, rgba(248, 250, 255, .08) 100%);
}

.figma-page-hero > div {
    position: relative;
    width: min(var(--container), calc(100% - 48px));
    height: 100%;
    margin: 0 auto;
    padding-top: 220px;
}

.figma-page-hero p {
    margin: 0;
    color: #425881;
    font-family: "Manrope", "Noto Sans SC", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.figma-page-hero h1 {
    max-width: 820px;
    margin: 16px 0 0;
    color: var(--ink);
    font-size: 60px;
    line-height: 1.2;
    font-weight: 700;
}

.figma-page-hero > div > span {
    display: block;
    max-width: 900px;
    margin-top: 24px;
    color: #64748b;
    font-size: 16px;
    line-height: 28px;
}

.about-page-hero::before,
.history-page-hero::before {
    background: linear-gradient(90deg, rgba(248, 250, 255, .96) 0%, rgba(248, 250, 255, .82) 31%, rgba(248, 250, 255, .15) 100%);
}

.about-page-hero > div,
.history-page-hero > div {
    padding-top: 213px;
    padding-left: 32px;
}

.about-page-hero p,
.history-page-hero p {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 18px;
    color: #425881;
    background: #bfd4ff;
    border-radius: 12px;
    letter-spacing: .08em;
}

.hero-gradient-text {
    display: inline;
    max-width: none;
    margin-top: 0;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    color: var(--blue);
    background: linear-gradient(90deg, #1a76c2 0%, #005d9e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.honors-page-hero::before {
    background: linear-gradient(90deg, rgba(248, 250, 255, .96) 0%, rgba(248, 250, 255, .72) 42%, rgba(248, 250, 255, .12) 100%);
}

.honors-page-hero > div {
    padding-top: 252px;
    padding-left: 0;
}

.honors-page-hero h1,
.history-page-hero h1 {
    font-weight: 700;
}

.franchise-page-hero::before,
.contact-banner::before {
    background: linear-gradient(90deg, rgba(248, 250, 255, .88) 0%, rgba(248, 250, 255, .62) 40%, rgba(248, 250, 255, .16) 100%);
}

.franchise-page-hero p {
    color: #005d9e;
    background: transparent;
    padding: 0;
    min-height: 12px;
    letter-spacing: .2em;
}

.franchise-page-hero h1 {
    color: var(--ink);
    font-weight: 700;
}

.franchise-page-hero > div > span {
    max-width: 760px;
    color: #3d3d3d;
    font-size: 18px;
    line-height: 29px;
}

.hero-apply-button {
    width: 154px;
    height: 58px;
    margin-top: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--blue);
    border-radius: 8px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}

.hero-apply-button::after,
.outline-action::after {
    content: "";
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    margin-left: 10px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.8 2.5 13.3 7l-4.5 4.5-1.1-1.1 2.6-2.6H.7V6.2h9.6L7.7 3.6l1.1-1.1Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.8 2.5 13.3 7l-4.5 4.5-1.1-1.1 2.6-2.6H.7V6.2h9.6L7.7 3.6l1.1-1.1Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
}

.figma-title-mark h2,
.franchise-section-title h2 {
    margin: 0;
    color: var(--ink);
    font-size: 38px;
    line-height: 52px;
    font-weight: 500;
}

.figma-title-mark::after,
.franchise-section-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 5px;
    margin-top: 14px;
    background: var(--blue);
}

.about-profile-section,
.about-environment-section {
    background: var(--white);
}

.about-profile-section {
    padding: 100px 0;
}

.about-profile-grid {
    width: min(var(--container), calc(100% - 48px));
    min-height: 600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 656px 656px;
    gap: 128px;
    align-items: center;
}

.about-profile-copy p {
    margin: 24px 0 0;
    color: #475569;
    font-size: 16px;
    line-height: 30px;
}

.about-profile-badges {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.about-profile-badges span {
    width: 204px;
    min-height: 84px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 16px;
    color: #181c21;
    background: var(--white);
    border: 1px solid #edf2f7;
    border-radius: 4px;
    font-size: 16px;
    line-height: 24px;
}

.about-profile-badges span::before {
    content: "";
    width: 24px;
    height: 24px;
    background: var(--blue);
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2 4 5v6c0 5 3.4 9.7 8 11 4.6-1.3 8-6 8-11V5l-8-3Zm0 4.2 4 1.5V11c0 2.8-1.6 5.5-4 6.8-2.4-1.3-4-4-4-6.8V7.7l4-1.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2 4 5v6c0 5 3.4 9.7 8 11 4.6-1.3 8-6 8-11V5l-8-3Zm0 4.2 4 1.5V11c0 2.8-1.6 5.5-4 6.8-2.4-1.3-4-4-4-6.8V7.7l4-1.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.about-profile-badges span:nth-child(1)::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 3H5a2 2 0 0 0-2 2v14h18V5a2 2 0 0 0-2-2ZM7 7h4v4H7V7Zm0 6h4v2H7v-2Zm6-6h4v2h-4V7Zm0 4h4v2h-4v-2Zm0 4h4v2h-4v-2ZM2 19h20v2H2v-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 3H5a2 2 0 0 0-2 2v14h18V5a2 2 0 0 0-2-2ZM7 7h4v4H7V7Zm0 6h4v2H7v-2Zm6-6h4v2h-4V7Zm0 4h4v2h-4v-2Zm0 4h4v2h-4v-2ZM2 19h20v2H2v-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.about-profile-badges span:nth-child(3)::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m12 2 2.8 5.7 6.2.9-4.5 4.4 1.1 6.2L12 16.3l-5.6 2.9 1.1-6.2L3 8.6l6.2-.9L12 2Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m12 2 2.8 5.7 6.2.9-4.5 4.4 1.1 6.2L12 16.3l-5.6 2.9 1.1-6.2L3 8.6l6.2-.9L12 2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.outline-action {
    width: auto;
    height: auto;
    margin-top: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--blue);
    font-size: 16px;
    line-height: 24px;
}

.about-profile-media {
    position: relative;
    min-height: 600px;
}

.about-profile-media::before {
    content: "";
    position: absolute;
    left: -24px;
    top: -24px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--blue);
    border-radius: 8px;
}

.about-profile-media img {
    position: relative;
    width: 656px;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
}

.about-profile-media div {
    position: absolute;
    right: -24px;
    bottom: 48px;
    width: 284px;
    min-height: 179px;
    padding: 30px;
    color: var(--white);
    background: rgba(0, 93, 158, .9);
    border-radius: 8px;
    box-shadow: 0 24px 50px rgba(15, 23, 42, .18);
}

.about-profile-media strong {
    display: block;
    font-size: 50px;
    line-height: 60px;
}

.about-profile-media span {
    display: block;
    margin-top: 12px;
    font-size: 16px;
    line-height: 28px;
}

.about-philosophy-section {
    width: min(var(--container), calc(100% - 48px));
    margin: 80px auto;
}

.about-philosophy-grid {
    display: grid;
    grid-template-columns: 437px 1fr;
    gap: 96px;
    align-items: start;
}

.about-philosophy-grid > div > p {
    margin: 28px 0 0;
    color: #64748b;
    font-size: 18px;
    line-height: 34px;
}

.philosophy-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
}

.philosophy-card-grid article {
    position: relative;
    min-height: 247px;
    padding: 64px 40px 40px;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.philosophy-icon {
    position: absolute;
    left: 40px;
    top: 40px;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    background: #f0f5ff;
    border-radius: 4px;
}

.philosophy-icon::after {
    content: "";
    width: 22px;
    height: 22px;
    background: var(--blue);
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2 4 5v6c0 5 3.4 9.7 8 11 4.6-1.3 8-6 8-11V5l-8-3Zm0 4.2 4 1.5V11c0 2.8-1.6 5.5-4 6.8-2.4-1.3-4-4-4-6.8V7.7l4-1.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2 4 5v6c0 5 3.4 9.7 8 11 4.6-1.3 8-6 8-11V5l-8-3Zm0 4.2 4 1.5V11c0 2.8-1.6 5.5-4 6.8-2.4-1.3-4-4-4-6.8V7.7l4-1.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.philosophy-card-grid h3 {
    margin: 32px 0 0;
    color: var(--ink);
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
}

.philosophy-card-grid p {
    margin: 18px 0 0;
    color: #64748b;
    font-size: 16px;
    line-height: 30px;
}

.about-environment-section {
    padding: 70px 0 100px;
}

.environment-strip {
    width: 100%;
    margin: 40px auto 0;
    display: flex;
    gap: 32px;
    overflow: hidden;
}

.environment-strip img {
    width: 450px;
    flex: 0 0 450px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.section-title-center.compact {
    height: auto;
    margin-top: 0;
}

.section-title-center.compact p {
    max-width: 1184px;
    margin: 24px auto 0;
    color: #485e88;
    font-size: 18px;
    line-height: 32px;
}

.honor-stats {
    width: min(var(--container), calc(100% - 48px));
    min-height: 186px;
    margin: 0 auto;
    padding: 56px 40px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 32px;
    background: var(--white);
}

.honor-stats article {
    text-align: center;
}

.honor-stats strong,
.honor-stats span {
    display: block;
}

.honor-stats strong {
    color: var(--blue);
    font-size: 32px;
    line-height: 48px;
    font-weight: 700;
}

.honor-stats span {
    margin-top: 2px;
    color: #64748b;
    font-size: 16px;
    line-height: 24px;
}

.honor-gallery-section,
.report-gallery-section {
    padding: 90px 0 100px;
}

.honor-gallery-section {
    background: #f8f9ff;
}

.report-gallery-section {
    background: var(--white);
}

.certificate-grid {
    width: min(var(--container), calc(100% - 48px));
    margin: 48px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.certificate-grid article {
    height: 248px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .06);
}

.certificate-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.report-gallery {
    width: min(var(--container), calc(100% - 48px));
    margin: 42px auto 0;
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.report-list {
    position: relative;
    display: grid;
    gap: 40px;
    padding-left: 16px;
}

.report-list::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    bottom: 15px;
    width: 1px;
    background: #b7d5ee;
}

.report-list button {
    position: relative;
    min-height: 30px;
    padding: 0 0 0 12px;
    text-align: left;
    color: var(--ink);
    background: transparent;
    border: 0;
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
}

.report-list button span {
    display: block;
    color: var(--blue);
    font-size: 12px;
    line-height: 18px;
    font-weight: 800;
}

.report-list button::before {
    content: "";
    position: absolute;
    left: -21px;
    top: 9px;
    width: 12px;
    height: 12px;
    background: var(--blue);
    border-radius: 999px;
}

.report-preview {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.report-preview img {
    width: 100%;
    height: 386px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .12);
}

.history-section {
    padding: 90px 0;
    background: #f8f9ff;
}

.history-timeline {
    position: relative;
    width: min(var(--container), calc(100% - 48px));
    margin: 56px auto 0;
    display: grid;
    gap: 70px;
}

.history-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #b7d5ee;
}

.history-event {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 581px) 80px minmax(0, 581px);
    gap: 34px;
    align-items: center;
}

.history-event.reverse .history-copy {
    grid-column: 3;
}

.history-event.reverse img {
    grid-column: 1;
    grid-row: 1;
}

.history-copy {
    text-align: right;
}

.history-event.reverse .history-copy {
    text-align: left;
}

.history-copy time {
    color: var(--blue);
    font-size: 16px;
    line-height: 24px;
}

.history-copy h3 {
    margin: 8px 0 0;
    color: var(--ink);
    font-size: 32px;
    line-height: 48px;
    font-weight: 500;
}

.history-copy p {
    margin: 14px 0 0;
    color: #414751;
    font-size: 16px;
    line-height: 27px;
}

.history-event img {
    width: 581px;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .12);
}

.timeline-dot {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    margin: 0 auto;
    display: grid;
    place-items: center;
    background: var(--white);
    border: 3px solid var(--blue);
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(26, 118, 194, .18);
}

.timeline-dot::after {
    content: "";
    width: 20px;
    height: 20px;
    background: var(--blue);
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2 9.8 8.1 4 6l2.1 5.8L0 14l6.1 2.2L4 22l5.8-2.1L12 26l2.2-6.1L20 22l-2.1-5.8L24 14l-6.1-2.2L20 6l-5.8 2.1L12 2Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2 9.8 8.1 4 6l2.1 5.8L0 14l6.1 2.2L4 22l5.8-2.1L12 26l2.2-6.1L20 22l-2.1-5.8L24 14l-6.1-2.2L20 6l-5.8 2.1L12 2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.franchise-tabs {
    width: min(var(--container), calc(100% - 48px));
    min-height: 132px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
    overflow-x: auto;
}

.franchise-tabs a {
    width: auto;
    min-width: 142px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    color: #181c21;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 18px;
    line-height: 24px;
}

.franchise-tabs a.active,
.franchise-tabs a:hover {
    color: var(--white);
    background: var(--blue);
    border-color: var(--blue);
}

.franchise-panel {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto 96px;
}

.franchise-section-title {
    margin-bottom: 40px;
}

.franchise-section-title p {
    max-width: 900px;
    margin: 18px 0 0;
    color: #64748b;
    font-size: 18px;
    line-height: 32px;
}

.risk-grid,
.support-grid,
.policy-grid,
.advantage-grid,
.join-process-grid,
.franchise-story-grid,
.business-grid,
.query-grid {
    display: grid;
    gap: 24px;
}

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

.risk-grid article,
.support-grid article,
.policy-grid article,
.advantage-grid article,
.join-process-grid article,
.query-grid article {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.risk-grid article {
    min-height: 180px;
    padding: 30px;
}

.risk-grid article.highlight {
    color: var(--white);
    background: var(--blue);
    border-color: var(--blue);
}

.risk-grid strong {
    color: #ba1a1a;
    font-size: 40px;
    line-height: 48px;
}

.risk-grid .highlight strong,
.risk-grid .highlight h3,
.risk-grid .highlight p {
    color: var(--white);
}

.risk-grid h3 {
    margin: 12px 0 0;
    color: #1a1c1e;
    font-size: 24px;
    line-height: 34px;
    font-weight: 400;
}

.risk-grid p {
    margin: 12px 0 0;
    color: #434750;
    font-size: 16px;
    line-height: 28px;
}

.support-panel,
.policy-panel,
.process-panel,
.query-panel {
    padding: 80px;
    background: var(--white);
    border-radius: 32px;
    box-shadow: 0 18px 60px rgba(15, 23, 42, .05);
}

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

.support-grid article,
.policy-grid article {
    min-height: 168px;
    padding: 30px;
}

.support-grid h3,
.policy-grid h3,
.advantage-grid h3,
.join-process-grid h3 {
    margin: 0;
    color: var(--ink);
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

.support-grid p,
.policy-grid p,
.advantage-grid p,
.join-process-grid p,
.query-grid p {
    margin: 14px 0 0;
    color: #64748b;
    font-size: 16px;
    line-height: 28px;
}

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

.policy-grid span {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--blue);
    font-size: 15px;
    line-height: 22px;
}

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

.advantage-grid article {
    min-height: 210px;
    padding: 32px;
}

.revenue-chip-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.revenue-chip-grid span {
    height: 80px;
    display: grid;
    place-items: center;
    color: #1a1c1e;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
}

.business-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 32px;
}

.business-grid article {
    overflow: hidden;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.business-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.business-grid div {
    padding: 26px;
}

.business-grid h3 {
    margin: 0;
    color: var(--ink);
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

.business-grid p {
    margin: 12px 0 0;
    color: #64748b;
    font-size: 16px;
    line-height: 28px;
}

.join-process-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.join-process-grid article {
    min-height: 242px;
    padding: 28px;
}

.join-process-grid span {
    display: block;
    margin-bottom: 20px;
    color: var(--blue);
    font-size: 28px;
    line-height: 34px;
    font-weight: 700;
}

.franchise-story-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.franchise-story-grid article {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.franchise-story-grid img {
    width: 100%;
    height: 310px;
    object-fit: cover;
}

.franchise-story-grid div {
    padding: 28px;
}

.franchise-story-grid time {
    position: absolute;
    left: 22px;
    top: 18px;
    z-index: 1;
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    color: var(--white);
    background: rgba(0, 56, 112, .72);
    border-radius: 999px;
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
}

.franchise-story-grid h3 {
    min-height: 60px;
    margin: 14px 0 0;
    color: var(--ink);
    font-size: 22px;
    line-height: 30px;
    font-weight: 400;
}

.franchise-story-grid p {
    margin: 14px 0 0;
    color: #64748b;
    font-size: 16px;
    line-height: 28px;
}

.franchise-story-grid a {
    display: inline-flex;
    margin-top: 18px;
    color: #005d9e;
    font-size: 14px;
    font-weight: 700;
}

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

.query-grid article {
    padding: 32px;
}

.query-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.query-tabs span {
    height: 52px;
    display: inline-flex;
    align-items: center;
    padding: 0 24px;
    background: #eff6ff;
    border-radius: 8px;
    color: var(--blue);
    font-size: 20px;
}

.query-grid form {
    display: grid;
    grid-template-columns: 1fr 140px;
    gap: 12px;
}

.query-grid input {
    height: 56px;
    padding: 0 18px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
}

.query-grid button {
    height: 56px;
    color: var(--white);
    background: var(--blue);
    border: 0;
    border-radius: 8px;
    font-weight: 700;
}

.franchise-page-hero p {
    font-size: 12px;
    line-height: 12px;
}

.franchise-page-hero h1 {
    margin-top: 28px;
}

.franchise-page-hero .hero-apply-button {
    margin-top: 32px;
}

.franchise-tabs {
    justify-content: center;
    gap: 32px;
}

.franchise-tabs a {
    min-width: 142px;
    height: 52px;
    color: #111827;
    background: #f2f3f5;
    border: 0;
    border-radius: 4px;
    white-space: nowrap;
}

.franchise-tabs a:nth-child(7) {
    min-width: 158px;
}

.franchise-tabs a.active,
.franchise-tabs a:hover {
    background: var(--blue);
}

.franchise-panel {
    margin-bottom: 0;
    padding: 88px 0;
}

.franchise-section-title.center {
    text-align: center;
}

.franchise-section-title.center::after {
    margin-right: auto;
    margin-left: auto;
}

.franchise-section-title.center p,
.franchise-section-title.center h2 {
    margin-right: auto;
    margin-left: auto;
}

.industry-panel .franchise-section-title {
    text-align: center;
}

.industry-panel .franchise-section-title::after {
    margin-right: auto;
    margin-left: auto;
}

.industry-panel .franchise-section-title p {
    margin-right: auto;
    margin-left: auto;
}

.risk-grid {
    gap: 40px;
}

.risk-grid article {
    position: relative;
    min-height: 236px;
    padding: 74px 40px 34px;
}

.risk-grid article::before {
    content: "";
    position: absolute;
    left: 40px;
    top: 36px;
    width: 22px;
    height: 22px;
    background: #d71920;
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2c1.7 0 3 1.3 3 3 0 1.3-.8 2.4-2 2.8V10h5a2 2 0 0 1 2 2v8h-2v-7h-5v7h-2v-7H6v7H4v-8a2 2 0 0 1 2-2h5V7.8A3 3 0 0 1 12 2Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2c1.7 0 3 1.3 3 3 0 1.3-.8 2.4-2 2.8V10h5a2 2 0 0 1 2 2v8h-2v-7h-5v7h-2v-7H6v7H4v-8a2 2 0 0 1 2-2h5V7.8A3 3 0 0 1 12 2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.risk-grid article.highlight::before {
    background: var(--white);
}

.risk-grid strong {
    position: absolute;
    top: 38px;
    right: 40px;
    color: #d71920;
}

.risk-grid h3 {
    margin-top: 0;
}

.revenue-panel,
.process-panel,
.qualification-panel,
.query-panel {
    width: 100%;
    padding-right: max(24px, calc((100% - var(--container)) / 2));
    padding-left: max(24px, calc((100% - var(--container)) / 2));
    background: #f8f9ff;
    border-radius: 0;
    box-shadow: none;
}

.support-panel,
.policy-panel {
    padding: 88px 0;
    background: var(--white);
    border-radius: 0;
    box-shadow: none;
}

.revenue-chip-grid {
    gap: 32px;
}

.revenue-chip-grid span {
    height: 118px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #003870;
    border-color: #dbe4f0;
    font-weight: 500;
}

.revenue-chip-grid span::before {
    content: "";
    width: 40px;
    height: 40px;
    display: block;
    background:
        url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23003f78' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21h18'/%3E%3Cpath d='M5 21V9l7-5 7 5v12'/%3E%3Cpath d='M9 21v-6h6v6'/%3E%3Cpath d='M9 11h6'/%3E%3C/svg%3E") center / 18px 18px no-repeat,
        #eef2f7;
    border-radius: 8px;
}

.business-heading {
    margin: 64px 0 26px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    color: #003870;
}

.business-heading h3 {
    margin: 0;
    font-size: 30px;
    line-height: 34px;
}

.business-heading p {
    margin: 14px 0 0;
    color: #64748b;
    font-size: 16px;
}

.business-heading strong {
    color: #003870;
    font-size: 50px;
    line-height: 60px;
}

.business-grid {
    gap: 40px;
}

.business-grid article {
    position: relative;
    border-color: #dbe4f0;
}

.business-grid img {
    height: 300px;
}

.business-grid div {
    min-height: 260px;
    padding: 34px 40px;
}

.business-grid div > span {
    position: absolute;
    left: 40px;
    top: 32px;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    color: var(--white);
    background: #005d9e;
    border-radius: 999px;
    font-size: 14px;
}

.business-grid a {
    display: inline-flex;
    margin-top: 24px;
    color: #003870;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
}

.business-grid a::after,
.franchise-story-grid a::after {
    content: "";
    width: 12px;
    height: 12px;
    margin-left: 8px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.7 2.3 11.4 6l-3.7 3.7-1.1-1.1 1.8-1.8H.6V5.2h7.8L6.6 3.4l1.1-1.1Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.7 2.3 11.4 6l-3.7 3.7-1.1-1.1 1.8-1.8H.6V5.2h7.8L6.6 3.4l1.1-1.1Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
}

.advantage-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
}

.advantage-grid article {
    position: relative;
    min-height: 300px;
    padding: 96px 40px 38px;
    border-color: #edf2f7;
}

.advantage-grid b {
    position: absolute;
    top: 36px;
    right: 40px;
    color: #e5edf7;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.advantage-icon,
.support-icon {
    position: absolute;
    left: 40px;
    top: 34px;
    width: 54px;
    height: 54px;
    background: #eef6ff;
    border-radius: 8px;
}

.advantage-icon::after,
.support-icon::after {
    content: "";
    position: absolute;
    inset: 16px;
    background: var(--blue);
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2 4 5v6c0 5 3.4 9.7 8 11 4.6-1.3 8-6 8-11V5l-8-3Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2 4 5v6c0 5 3.4 9.7 8 11 4.6-1.3 8-6 8-11V5l-8-3Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.process-panel .franchise-section-title,
.support-panel .franchise-section-title,
.policy-panel .franchise-section-title,
.qualification-panel .franchise-section-title,
.story-panel .franchise-section-title,
.query-panel .franchise-section-title {
    text-align: center;
}

.process-panel .franchise-section-title::after,
.support-panel .franchise-section-title::after,
.policy-panel .franchise-section-title::after,
.qualification-panel .franchise-section-title::after,
.story-panel .franchise-section-title::after,
.query-panel .franchise-section-title::after {
    margin-right: auto;
    margin-left: auto;
}

.process-panel .franchise-section-title p,
.support-panel .franchise-section-title p,
.policy-panel .franchise-section-title p,
.qualification-panel .franchise-section-title p,
.story-panel .franchise-section-title p {
    margin-right: auto;
    margin-left: auto;
}

.join-process-grid {
    gap: 32px;
}

.join-process-grid article {
    position: relative;
    min-height: 274px;
    padding: 36px 32px;
}

.join-process-grid article::after {
    content: "";
    position: absolute;
    right: 32px;
    top: 36px;
    width: 24px;
    height: 24px;
    background: #003870;
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 5a2 2 0 0 1 2-2h9l5 5v11a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V5Zm11 0v4h4'/%3E%3Cpath d='M8 13h8M8 17h5'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 5a2 2 0 0 1 2-2h9l5 5v11a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V5Zm11 0v4h4'/%3E%3Cpath d='M8 13h8M8 17h5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.join-process-grid span {
    color: var(--blue);
    font-size: 24px;
    line-height: 34px;
}

.support-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.support-grid article {
    position: relative;
    min-height: 148px;
    padding: 76px 30px 26px;
    border-color: #edf2f7;
}

.support-icon {
    left: 30px;
    top: 28px;
    width: 40px;
    height: 40px;
}

.support-icon::after {
    inset: 11px;
}

.policy-panel {
    width: min(var(--container), calc(100% - 48px));
    padding: 88px 80px;
    background: #f3f6fa;
    border-radius: 24px;
}

.policy-stack {
    display: grid;
    gap: 38px;
}

.policy-group-title {
    position: relative;
    margin: 0 0 24px;
    padding-left: 48px;
    color: #003870;
    font-size: 22px;
    line-height: 32px;
    font-weight: 400;
}

.policy-group-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 34px;
    height: 1px;
    background: #003870;
}

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

.policy-group-wide .policy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.policy-group-dense .policy-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.policy-grid article {
    min-height: 132px;
    padding: 26px 28px;
    background: var(--white);
    border: 0;
    border-radius: 6px;
}

.policy-panel .policy-grid span {
    margin-bottom: 14px;
    color: #6a8ab8;
    font-size: 18px;
    line-height: 24px;
}

.qualification-panel {
    background: #f8f9ff;
}

.franchise-subtitle {
    position: relative;
    margin: 48px 0 28px;
    padding-left: 48px;
    color: #003870;
    font-size: 22px;
    line-height: 32px;
    font-weight: 400;
}

.franchise-subtitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 34px;
    height: 1px;
    background: #003870;
}

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

.requirement-grid article {
    min-height: 150px;
    padding: 28px;
    background: var(--white);
    border-radius: 6px;
}

.requirement-grid article.wide {
    grid-column: 1 / -1;
    min-height: 88px;
    border-left: 4px solid var(--blue);
}

.requirement-grid span {
    color: #6a8ab8;
    font-size: 20px;
}

.requirement-grid h4 {
    margin: 14px 0 10px;
    color: #003870;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
}

.requirement-grid p,
.level-note {
    margin: 0;
    color: #414751;
    font-size: 16px;
    line-height: 26px;
}

.level-table {
    overflow: hidden;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.level-row {
    display: grid;
    grid-template-columns: 1fr 1.25fr 2.2fr 132px;
    align-items: center;
    min-height: 76px;
    padding: 0 32px;
    border-top: 1px solid #edf2f7;
    color: #1f2937;
    font-size: 16px;
}

.level-head {
    min-height: 56px;
    color: #003870;
    background: #f3f6fa;
    border-top: 0;
    font-weight: 500;
}

.level-row a {
    width: 78px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #003870;
    border: 1px solid #003870;
    border-radius: 4px;
    font-size: 14px;
}

.level-row:last-child {
    background: #e9eff6;
}

.level-row:last-child a {
    color: var(--white);
    background: #003870;
}

.level-note {
    margin-top: 24px;
    padding: 24px 28px;
    background: #f0f4ff;
    border-radius: 8px;
}

.franchise-story-grid {
    gap: 40px;
}

.franchise-story-grid article {
    position: relative;
    border-color: #dbe4f0;
}

.franchise-story-grid img {
    height: 310px;
}

.query-grid {
    grid-template-columns: 1fr;
    gap: 40px;
}

.query-grid article {
    padding: 32px;
    background: var(--white);
}

.query-tabs {
    border-bottom: 1px solid #dbe4f0;
}

.query-tabs span {
    height: 44px;
    color: #003870;
    background: transparent;
    border-radius: 0;
}

.query-tabs span.active,
.query-tabs span:first-child.active {
    border-bottom: 2px solid var(--blue);
}

.query-grid form {
    grid-template-columns: 1fr 120px;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 40px;
    text-align: center;
    color: var(--muted);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.pager {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
}

.pager a,
.pager span,
.pager strong {
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.pager span {
    color: #99a5aa;
}

.site-footer {
    min-height: 442.75px;
    color: rgba(255, 255, 255, .86);
    background: var(--footer);
}

.footer-shell {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
    padding: 80px 32px 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 736px 640px;
    min-height: 190.75px;
}

.footer-logo {
    display: block;
    width: 222px;
    height: 32px;
    overflow: hidden;
}

.footer-about p {
    width: 476px;
    max-width: 476px;
    margin: 30.75px 0 0;
    color: #c6c6c6;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
}

.footer-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 64px;
    align-items: start;
}

.footer-links h2 {
    margin: 0 0 24px;
    color: var(--white);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    white-space: nowrap;
}

.footer-links a,
.footer-links p {
    display: block;
    margin: 0 0 16px;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.footer-links a {
    white-space: nowrap;
}

.footer-links a:hover,
.footer-friend-links a:hover,
.footer-bottom a:hover {
    color: var(--white);
}

.footer-friend-links {
    margin-top: 48px;
    padding-top: 28px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    color: #94a3b8;
    border-top: 1px solid #1e293b;
}

.footer-friend-links span {
    flex: 0 0 auto;
    color: var(--white);
    font-size: 12px;
    line-height: 20px;
}

.footer-friend-links nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
}

.footer-friend-links a {
    color: #94a3b8;
    font-size: 13px;
    line-height: 20px;
}

.footer-bottom {
    width: 100%;
    min-height: 64px;
    margin-top: 44px;
    padding-top: 49px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #94a3b8;
    border-top: 1px solid #1e293b;
    font-size: 10px;
    font-weight: 700;
    line-height: 15px;
}

.footer-bottom nav {
    display: flex;
    gap: 48px;
}

.footer-bottom a {
    font-size: 10px;
    font-weight: 400;
    line-height: 15px;
}

@media (max-width: 1280px) {
    .desktop-nav {
        margin-left: 48px;
        gap: 22px;
    }

    .about-shell,
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .about-image img {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }

    .franchise-card {
        padding-left: 120px;
        padding-right: 120px;
    }
}

@media (max-width: 980px) {
    .site-header,
    .nav-shell {
        height: 72px;
    }

    .nav-shell {
        padding: 0 20px;
    }

    .brand {
        width: 254px;
        flex-basis: 254px;
    }

    .desktop-nav,
    .header-actions {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    .mobile-quick-nav {
        width: min(520px, calc(100% - 32px));
        margin: 0 auto 24px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 4px;
        padding: 8px;
        background: rgba(255, 255, 255, .96);
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: 0 16px 40px rgba(15, 23, 42, .16);
        backdrop-filter: blur(16px);
    }

    .mobile-quick-nav a {
        min-height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--ink-soft);
        border-radius: 6px;
        font-size: 13px;
        font-weight: 700;
    }

    .mobile-quick-nav a:hover {
        color: var(--blue);
        background: #f1f8ff;
    }

    .hero {
        height: auto;
        min-height: 680px;
    }

    .hero-inner {
        padding: 112px 0 80px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .solution-grid,
    .product-grid,
    .case-grid,
    .listing-grid,
    .process-grid,
    .about-shell,
    .footer-main,
    .footer-links,
    .contact-hero,
    .detail-hero,
    .detail-body {
        grid-template-columns: 1fr;
    }

    .detail-hero > div,
    .detail-body > *,
    .detail-module,
    .article-toc,
    .feature-list,
    .step-grid,
    .related-grid,
    .case-summary-grid,
    .spec-table {
        min-width: 0;
    }

    .detail-aside {
        position: static;
    }

    .solutions-section,
    .process-section,
    .product-section,
    .cases-section,
    .faq-section,
    .knowledge-section {
        height: auto;
        min-height: auto;
        padding-bottom: 72px;
    }

    .section-head {
        height: auto;
        margin: 40px auto 28px;
    }

    .section-title-center {
        height: auto;
        margin-top: 40px;
    }

    .solution-card,
    .product-card,
    .case-card,
    .article-card {
        height: auto;
        min-height: auto;
    }

    .case-card {
        min-height: 347.14px;
    }

    .solution-body,
    .product-body {
        height: auto;
        overflow: visible;
    }

    .solution-meta {
        height: auto;
    }

    .process-line {
        display: none;
    }

    .process-grid {
        gap: 28px;
    }

    .article-card,
    .article-card.reverse {
        grid-template-columns: 1fr;
    }

    .article-card.reverse .article-image {
        order: 0;
    }

    .read-link {
        position: static;
        margin-top: 24px;
    }

    .category-nav {
        overflow-x: auto;
        gap: 28px;
    }

    .news-grid,
    .contact-grid-section,
    .tag-cloud {
        grid-template-columns: 1fr;
    }

    .search-form,
    .result-item {
        grid-template-columns: 1fr;
    }

    .news-pager-shell {
        width: min(512px, calc(100% - 48px));
        margin-bottom: 96px;
    }

    .contact-grid-section {
        height: auto;
        margin-top: 64px;
    }

    .prototype-contact-form {
        height: auto;
    }

    .about-shell {
        min-height: auto;
        gap: 40px;
        padding: 72px 24px;
    }

    .franchise-section {
        height: auto;
        min-height: 0;
        padding: 60px 24px;
    }

    .franchise-card {
        height: auto;
        min-height: 441px;
        padding: 60px 36px;
    }

    .franchise-card h2,
    .franchise-card p,
    .franchise-form,
    .franchise-card > span {
        width: 100%;
        height: auto;
    }

    .franchise-card h2 {
        font-size: 34px;
        line-height: 1.35;
    }

    .franchise-card p {
        margin-top: 16px;
        padding-top: 0;
        line-height: 1.7;
    }

    .franchise-form {
        height: auto;
        margin-top: 24px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 185.61px;
        gap: 16px;
    }

    .franchise-form input:not([type="hidden"]),
    .franchise-form button {
        position: static;
        width: 100%;
        height: 58px;
    }

    .franchise-card > span {
        margin-top: 20px;
        padding-top: 0;
    }

    .site-footer {
        height: auto;
        min-height: 0;
    }

    .footer-shell {
        height: auto;
        padding-bottom: 48px;
    }

    .footer-main {
        height: auto;
        gap: 40px;
    }

    .footer-links {
        width: 100%;
        gap: 24px;
    }

    .footer-about p {
        width: 100%;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-friend-links {
        flex-direction: column;
        gap: 12px;
    }

    .figma-page-hero {
        height: 560px;
    }

    .figma-page-hero > div,
    .about-page-hero > div,
    .history-page-hero > div,
    .honors-page-hero > div {
        width: calc(100% - 48px);
        padding: 150px 0 0;
    }

    .figma-page-hero h1 {
        font-size: 42px;
    }

    .about-philosophy-grid,
    .about-profile-grid,
    .honor-stats,
    .certificate-grid,
    .report-gallery,
    .report-preview,
    .history-event {
        grid-template-columns: 1fr;
    }

    .about-profile-grid {
        gap: 48px;
    }

    .about-profile-media {
        min-height: auto;
    }

    .about-profile-media img {
        width: 100%;
        height: auto;
        aspect-ratio: 1.09;
    }

    .about-profile-media div {
        right: 24px;
        bottom: 24px;
    }

    .honor-stats {
        padding: 40px 24px;
    }

    .report-gallery {
        gap: 32px;
    }

    .history-timeline::before {
        left: 24px;
    }

    .history-event {
        padding-left: 68px;
        gap: 24px;
    }

    .history-event.reverse .history-copy,
    .history-event.reverse img,
    .history-copy {
        grid-column: auto;
        text-align: left;
    }

    .timeline-dot {
        position: absolute;
        left: 0;
        top: 10px;
    }

    .history-event img {
        width: 100%;
        height: auto;
        aspect-ratio: 581 / 320;
    }
}

@media (max-width: 640px) {
    .brand {
        width: 220px;
        flex-basis: 220px;
        height: 32px;
    }

    .hero {
        min-height: 620px;
    }

    .hero-inner {
        width: calc(100% - 32px);
        padding-top: 72px;
    }

    .hero h1 {
        font-size: 29px;
        line-height: 1.42;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-badges {
        gap: 10px;
    }

    .hero-badges span {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-badges span:nth-child(n),
    .hero-actions .button.primary,
    .hero-actions .button.ghost {
        width: 100%;
    }

    .hero-actions,
    .solution-actions,
    .about-actions,
    .form-row,
    .franchise-form {
        display: grid;
        grid-template-columns: 1fr;
    }

    .detail-hero,
    .detail-body {
        width: calc(100vw - 32px);
        max-width: calc(100vw - 32px);
        overflow-x: clip;
    }

    .detail-module {
        padding: 18px;
    }

    .feature-list,
    .step-grid,
    .related-grid,
    .case-summary-grid,
    .spec-table div {
        grid-template-columns: 1fr;
    }

    .detail-meta span,
    .detail-meta a,
    .related-grid a {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .detail-meta {
        display: grid;
        grid-template-columns: 1fr;
    }

    .button,
    .mini-button,
    .small-blue-button,
    .small-blue-button.large,
    .header-cta,
    .header-link {
        width: 100%;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-head .small-blue-button {
        margin-top: 16px;
    }

    .section-head h2,
    .section-title-center h2,
    .about-copy h2 {
        font-size: 30px;
        line-height: 1.35;
    }

    .solution-body,
    .article-copy,
    .case-overlay {
        padding: 24px;
    }

    .solution-meta {
        flex-direction: column;
        padding-top: 0;
        line-height: 1.5;
    }

    .product-grid,
    .solution-grid,
    .case-grid,
    .article-list,
    .faq-groups {
        width: calc(100% - 32px);
    }

    .product-body h3,
    .case-card h3,
    .article-copy h3 {
        font-size: 22px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .franchise-section {
        padding: 60px 16px;
    }

    .franchise-card h2 {
        font-size: 30px;
        line-height: 1.35;
    }

    .franchise-card p {
        margin-top: 14px;
        line-height: 1.7;
    }

    .news-banner,
    .contact-banner {
        height: 520px;
    }

    .news-banner > div,
    .contact-banner > div {
        width: calc(100% - 32px);
        padding: 136px 0 0;
    }

    .news-banner h1,
    .contact-banner h1 {
        font-size: 34px;
    }

    .category-nav {
        width: 100%;
        padding: 0 16px;
    }

    .news-section,
    .contact-grid-section,
    .contact-map,
    .search-section,
    .tag-index-section,
    .tag-detail-section,
    .site-breadcrumb,
    .filter-bar {
        width: calc(100% - 32px);
    }

    .news-pager-shell {
        width: calc(100% - 32px);
        margin-bottom: 72px;
        gap: 8px;
    }

    .news-pager-shell span {
        width: 40px;
        height: 40px;
    }

    .prototype-contact-form,
    .contact-info-card {
        padding: 24px;
    }

    .contact-form-grid,
    .qr-row {
        grid-template-columns: 1fr;
    }

    .franchise-form {
        height: auto;
        margin-top: 24px;
        grid-template-columns: 1fr;
    }

    .franchise-form input,
    .franchise-form button {
        min-height: 56px;
    }

    .footer-shell {
        padding: 56px 24px 36px;
    }

    .footer-bottom nav {
        flex-wrap: wrap;
    }
}

@media (max-width: 1180px) {
    .about-profile-grid,
    .about-philosophy-grid,
    .risk-grid,
    .support-grid,
    .policy-grid,
    .advantage-grid,
    .business-grid,
    .franchise-story-grid,
    .query-grid,
    .certificate-grid,
    .tag-cloud {
        grid-template-columns: 1fr 1fr;
    }

    .report-gallery {
        grid-template-columns: 1fr;
    }

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

    .honor-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .about-profile-grid {
        gap: 56px;
    }

    .about-profile-media img {
        width: 100%;
    }

    .join-process-grid,
    .revenue-chip-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .figma-page-hero {
        height: 560px;
    }

    .figma-page-hero > div,
    .about-page-hero > div,
    .history-page-hero > div,
    .honors-page-hero > div {
        width: calc(100% - 32px);
        padding: 128px 0 0;
    }

    .figma-page-hero h1 {
        font-size: 36px;
        line-height: 1.28;
    }

    .figma-page-hero > div > span,
    .franchise-page-hero > div > span {
        font-size: 16px;
        line-height: 28px;
    }

    .about-profile-section {
        padding: 64px 0;
    }

    .about-profile-grid,
    .about-philosophy-grid,
    .philosophy-card-grid,
    .honor-stats,
    .certificate-grid,
    .report-gallery,
    .report-preview,
    .history-event,
    .risk-grid,
    .support-grid,
    .policy-grid,
    .advantage-grid,
    .business-grid,
    .join-process-grid,
    .franchise-story-grid,
    .query-grid,
    .revenue-chip-grid {
        grid-template-columns: 1fr;
    }

    .about-profile-grid,
    .about-philosophy-section,
    .about-environment-section,
    .franchise-panel,
    .franchise-tabs {
        width: calc(100% - 32px);
    }

    .about-profile-media {
        min-height: auto;
    }

    .about-profile-media::before {
        display: none;
    }

    .about-profile-media img {
        height: auto;
        aspect-ratio: 1 / .9;
    }

    .about-profile-media div {
        position: static;
        width: 100%;
        margin-top: 16px;
    }

    .history-timeline::before {
        left: 24px;
    }

    .history-event {
        padding-left: 68px;
        gap: 24px;
    }

    .history-event.reverse .history-copy,
    .history-event.reverse img,
    .history-copy {
        grid-column: auto;
        text-align: left;
    }

    .timeline-dot {
        position: absolute;
        left: 0;
        top: 10px;
    }

    .history-event img {
        width: 100%;
        height: auto;
        aspect-ratio: 581 / 320;
    }

    .report-preview img {
        height: auto;
        aspect-ratio: 284 / 386;
    }

    .environment-strip {
        grid-template-columns: 1fr;
        width: calc(100% - 32px);
    }

    .environment-strip img,
    .business-grid img,
    .franchise-story-grid img {
        height: 240px;
    }

    .franchise-tabs {
        min-height: 96px;
        gap: 10px;
    }

    .franchise-tabs a {
        min-width: 118px;
        height: 44px;
        padding: 0 18px;
        font-size: 15px;
    }

    .support-panel,
    .policy-panel,
    .process-panel,
    .query-panel {
        padding: 32px 20px;
        border-radius: 24px;
    }

    .franchise-section-title h2,
    .figma-title-mark h2 {
        font-size: 30px;
        line-height: 42px;
    }

    .query-grid form {
        grid-template-columns: 1fr;
    }

    .detail-hero {
        min-height: 0;
        margin-top: 40px;
        padding: 32px 24px;
        gap: 28px;
        border-radius: 24px;
    }

    .detail-hero h1 {
        font-size: 34px;
        line-height: 1.24;
    }

    .detail-hero p {
        margin-top: 18px;
        font-size: 16px;
        line-height: 28px;
    }

    .detail-hero img {
        height: 250px;
        border-radius: 18px;
    }

    .detail-body {
        padding-top: 24px;
    }

    .rich-content,
    .detail-aside {
        padding: 24px 18px;
        border-radius: 20px;
    }

    .rich-content {
        font-size: 16px;
        line-height: 1.75;
    }

    .article-toc-head {
        min-height: 56px;
        padding: 0 20px;
    }

    .article-toc ol {
        max-height: 300px;
        padding: 20px;
    }

    .article-toc li.toc-level-3 {
        padding-left: 16px;
    }

    .article-toc a {
        width: 100%;
        display: flex;
        align-items: flex-start;
        font-size: 14px;
        line-height: 22px;
    }

    .article-toc a span {
        flex: 0 0 auto;
    }

    .faq-list summary {
        min-height: auto;
        padding: 18px 44px 18px 18px;
        font-size: 16px;
        line-height: 26px;
    }

    .faq-list summary::after {
        right: 18px;
        top: 25px;
    }

    .faq-list p {
        padding: 0 18px 18px;
        font-size: 16px;
        line-height: 27px;
    }
}

@media (max-width: 640px) {
    .tag-cloud,
    .search-form,
    .result-item {
        grid-template-columns: 1fr;
    }
}
