/* Multi-page layout — FOGX */
body.is-inner {
    background:
        radial-gradient(ellipse 80% 50% at 10% -10%, rgba(201, 154, 91, .12), transparent 55%),
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(107, 73, 48, .06), transparent 50%),
        var(--canvas);
}

.page-hero {
    position: relative;
    padding: clamp(140px, 16vw, 180px) var(--gutter) clamp(48px, 6vw, 72px);
}

.page-hero__inner {
    width: min(100%, var(--content));
    margin: 0 auto;
}

.page-hero__crumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    margin-bottom: 22px;
    color: var(--ink-faint);
    font-size: 12px;
}

.page-hero__crumb a {
    color: var(--ink-soft);
    transition: color .25s ease;
}

.page-hero__crumb a:hover {
    color: var(--brown);
}

.page-hero__crumb span[aria-hidden="true"] {
    opacity: .45;
}

.page-hero .overline {
    margin-bottom: 14px;
}

.page-hero h1 {
    max-width: min(100%, 18em);
    font-size: clamp(2rem, 4.6vw + 0.6rem, 3.75rem);
    font-weight: 480;
    letter-spacing: -.035em;
    line-height: 1.15;
}

.page-hero__lead {
    max-width: 40rem;
    margin-top: 1.125rem;
    color: var(--ink-soft);
    font-size: clamp(0.9375rem, 0.85rem + 0.35vw, 1.125rem);
    line-height: 1.75;
}

.page-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.page-hero__meta span {
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 253, 248, .7);
    color: var(--brown);
    font-size: 11px;
    font-weight: 650;
}

.page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.page-section {
    padding: 0 var(--gutter) clamp(72px, 9vw, 120px);
}

.page-panel {
    width: min(100%, var(--content));
    margin: 0 auto;
    padding: clamp(32px, 4vw, 56px);
    border: 1px solid var(--line);
    border-radius: clamp(28px, 4vw, 42px);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.page-panel--warm {
    background: var(--surface-warm);
}

.page-panel--gold {
    background: linear-gradient(145deg, var(--surface-gold), var(--surface-peach));
}

.page-panel--dark {
    background: linear-gradient(135deg, #3d2b20 0%, #5a3f2c 55%, #6b4930 100%);
    color: #fff8ed;
    border-color: transparent;
}

.page-panel--dark p,
.page-panel--dark .page-kicker {
    color: rgba(255, 248, 237, .72);
}

.page-kicker {
    color: var(--champagne-deep);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.page-panel h2,
.detail-block h2 {
    margin-top: 0.625rem;
    font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.25rem);
    font-weight: 540;
    letter-spacing: -.025em;
    line-height: 1.25;
}

.page-panel > p,
.detail-block > p {
    max-width: 42em;
    margin-top: 0.875rem;
    color: var(--ink-soft);
    font-size: 0.9375rem;
    line-height: 1.8;
}

.page-panel--dark > p {
    color: rgba(255, 248, 237, .72);
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: clamp(28px, 4vw, 48px);
    width: min(100%, var(--content));
    margin: 0 auto;
    align-items: stretch;
}

.feature-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
    list-style: none;
}

.feature-list li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    align-items: start;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 253, 248, .65);
}

.feature-list li strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
    font-weight: 620;
}

.feature-list li span {
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.65;
}

.feature-list li i {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--brown-deep);
    color: #fffaf2;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
}

.spec-table {
    width: 100%;
    margin-top: 28px;
    border-collapse: collapse;
    font-size: 14px;
}

.spec-table th,
.spec-table td {
    padding: 16px 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.spec-table th {
    width: 34%;
    color: var(--ink-soft);
    font-weight: 550;
}

.spec-table td {
    font-weight: 560;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
    border-bottom: 0;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    width: min(100%, var(--content));
    margin: 0 auto;
}

.pillar-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    padding: clamp(24px, 3vw, 36px);
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--surface);
    transition: transform .4s var(--ease), box-shadow .4s ease, border-color .3s ease, background .3s ease;
}

a.pillar-card,
.product-pick a {
    cursor: pointer;
    color: inherit;
    text-decoration: none;
}

a.pillar-card:hover,
.product-pick a:hover {
    transform: translateY(-5px);
    border-color: rgba(121, 80, 42, .28);
    background: #fffdf9;
    box-shadow: 0 22px 50px rgba(92, 66, 43, .12);
}

a.pillar-card:focus-visible,
.product-pick a:focus-visible {
    outline: 2px solid var(--champagne-deep);
    outline-offset: 3px;
}

.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.pillar-card__index {
    color: var(--champagne-deep);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .16em;
}

.pillar-card h3 {
    margin-top: 18px;
    font-size: 24px;
    font-weight: 580;
    letter-spacing: -.02em;
}

.pillar-card p {
    flex: 1;
    margin-top: 12px;
    margin-bottom: 0;
    padding-bottom: 44px;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.75;
}

/* 可点击模块：右下角箭头圆标 */
.card-go {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    background: rgba(255, 253, 248, .92);
    color: var(--brown-deep);
    box-shadow: 0 6px 16px rgba(92, 66, 43, .08);
    transition:
        transform .35s var(--ease),
        background .3s ease,
        border-color .3s ease,
        color .3s ease,
        box-shadow .35s ease;
}

.card-go svg {
    width: 18px;
    height: 18px;
}

a:hover .card-go,
a:focus-visible .card-go {
    transform: translateX(3px);
    border-color: transparent;
    background: var(--brown-deep);
    color: #fffaf2;
    box-shadow: 0 10px 22px rgba(61, 43, 32, .18);
}

.detail-stack {
    display: grid;
    gap: clamp(28px, 4vw, 40px);
    width: min(100%, var(--content));
    margin: 0 auto;
}

.detail-block {
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid var(--line);
    border-radius: clamp(24px, 3vw, 36px);
    background: var(--surface);
}

.detail-block--accent {
    background: var(--surface-warm);
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 20px;
    margin-top: 24px;
    list-style: none;
}

.check-grid li {
    position: relative;
    padding: 12px 12px 12px 36px;
    border-radius: 14px;
    background: rgba(255, 253, 248, .7);
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.55;
}

.check-grid li::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--champagne-deep);
}

.scenario-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.scenario-card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 253, 248, .75);
}

.scenario-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
}

.scenario-card p {
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.65;
}

.steps-vertical {
    display: grid;
    margin-top: 8px;
    list-style: none;
    counter-reset: step;
}

.steps-vertical li {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.steps-vertical li:last-child {
    border-bottom: 0;
}

.steps-vertical li::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--surface-warm);
    color: var(--champagne-deep);
    font-size: 12px;
    font-weight: 700;
}

.steps-vertical h3 {
    font-size: 18px;
    font-weight: 620;
}

.steps-vertical p {
    margin-top: 6px;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.7;
}

.cta-band {
    width: min(100%, var(--content));
    margin: 0 auto;
    padding: clamp(36px, 5vw, 56px);
    border-radius: clamp(28px, 4vw, 40px);
    background: linear-gradient(125deg, #3d2b20, #6b4930 60%, #8a6340);
    color: #fff8ed;
}

.cta-band h2 {
    max-width: min(100%, 14em);
    font-size: clamp(1.625rem, 1.2rem + 1.5vw, 2.5rem);
    font-weight: 520;
    letter-spacing: -.03em;
    line-height: 1.2;
}

.cta-band p {
    max-width: 52ch;
    margin-top: 14px;
    color: rgba(255, 248, 237, .7);
    font-size: 15px;
    line-height: 1.75;
}

.cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.cta-band .button--primary {
    background: #fff8ed;
    color: var(--brown-deep);
    box-shadow: none;
}

.cta-band .button--primary:hover {
    background: #fff;
}

.cta-band .button--secondary {
    border-color: rgba(255, 248, 237, .28);
    background: transparent;
    color: #fff8ed;
}

.cta-band .button--secondary:hover {
    background: rgba(255, 248, 237, .1);
    box-shadow: none;
}

.home-preview {
    padding: clamp(72px, 9vw, 120px) var(--gutter);
}

.home-preview__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    width: min(100%, var(--content));
    margin: 0 auto 36px;
}

.home-preview__head h2 {
    max-width: min(100%, 12em);
    font-size: clamp(1.625rem, 1.2rem + 1.5vw, 2.5rem);
    font-weight: 520;
    letter-spacing: -.03em;
    line-height: 1.2;
}

.home-preview__head p {
    max-width: 36ch;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.7;
}

.home-preview__head a {
    flex-shrink: 0;
    color: var(--brown-deep);
    font-size: 13px;
    font-weight: 650;
}

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

.product-pick a {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 240px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--surface);
    transition: transform .4s var(--ease), box-shadow .4s ease, border-color .3s ease, background .3s ease;
}

.product-pick a:hover {
    transform: translateY(-5px);
    border-color: rgba(121, 80, 42, .28);
    background: #fffdf9;
    box-shadow: 0 22px 50px rgba(92, 66, 43, .12);
}

.product-pick em {
    color: var(--champagne-deep);
    font-size: 10px;
    font-style: normal;
    font-weight: 750;
    letter-spacing: .14em;
}

.product-pick strong {
    margin-top: 16px;
    font-size: 24px;
    font-weight: 580;
}

.product-pick span:not(.card-go) {
    flex: 1;
    margin-top: 10px;
    margin-bottom: 0;
    padding-bottom: 44px;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.65;
}

.footer-main {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
}

.footer-nav a {
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 550;
    transition: color .25s ease;
}

.footer-nav a:hover {
    color: var(--brown);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    gap: 18px;
    width: min(100%, var(--content));
    margin: 0 auto;
}

.contact-card {
    padding: clamp(28px, 4vw, 44px);
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--surface);
}

.contact-card h2 {
    font-size: 22px;
    font-weight: 600;
}

.contact-card > p {
    margin-top: 10px;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.7;
}

.contact-card .contact-methods {
    margin-top: 20px;
}

.contact-card .contact-methods button {
    width: 100%;
    color: var(--ink);
    border-bottom-color: var(--line);
}

.contact-card .contact-methods button em {
    color: var(--champagne-deep);
}

.contact-card .contact-methods button:hover em {
    color: var(--brown-deep);
}

.contact-card .contact-address span {
    color: var(--ink-faint);
    font-size: 9px;
    letter-spacing: .12em;
}

.contact-card .contact-address p {
    margin-top: 9px;
    color: var(--ink);
    font-size: 13px;
    line-height: 1.8;
}

.contact-card .contact-number {
    background: var(--brown-deep);
    color: #fffaf2;
}

.contact-card .contact-number:hover {
    box-shadow: 0 12px 28px rgba(61, 43, 32, .18);
}

.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.related-links a {
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 253, 248, .8);
    color: var(--brown-deep);
    font-size: 12px;
    font-weight: 620;
    transition: background .25s ease, transform .25s var(--ease);
}

.related-links a:hover {
    background: var(--surface-gold);
    transform: translateY(-2px);
}

@media (max-width: 1060px) {
    .split-grid,
    .pillar-grid,
    .product-pick,
    .scenario-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .home-preview__head {
        align-items: flex-start;
        flex-direction: column;
    }

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

@media (max-width: 720px) {
    .page-hero h1 {
        max-width: none;
    }

    .check-grid {
        grid-template-columns: 1fr;
    }

    .page-panel,
    .detail-block {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .steps-vertical li {
        grid-template-columns: 44px 1fr;
        gap: 12px;
    }

    .steps-vertical li::before {
        width: 40px;
        height: 40px;
    }
}