/* 独立内容页共用样式 */
.page-hero {
    padding: 72px 0 68px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
    color: #64748b;
    font-size: 14px;
}

.breadcrumbs a { color: #475569; }
.breadcrumbs a:hover { color: #3730a3; }
.breadcrumbs span[aria-hidden="true"] { color: #94a3b8; }

.eyebrow {
    margin-bottom: 14px;
    color: #0d9488;
    font-size: 14px;
    font-weight: 700;
}

.page-hero h1 {
    max-width: 900px;
    margin-bottom: 20px;
    color: #0f172a;
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: 0;
}

.page-lead {
    max-width: 820px;
    color: #475569;
    font-size: 19px;
    line-height: 1.85;
}

.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.page-main { min-height: 40vh; }

.content-band {
    padding: 76px 0;
    background: #ffffff;
}

.content-band.alt {
    background: #f8fafc;
    border-top: 1px solid #eef2f7;
    border-bottom: 1px solid #eef2f7;
}

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

.section-heading h2 {
    margin-bottom: 12px;
    color: #0f172a;
    font-size: 32px;
    line-height: 1.3;
    letter-spacing: 0;
}

.section-heading p {
    color: #64748b;
    font-size: 17px;
    line-height: 1.8;
}

.prose {
    max-width: 820px;
    color: #334155;
    font-size: 17px;
    line-height: 1.95;
}

.prose p + p { margin-top: 18px; }
.prose strong { color: #0f172a; }

.content-grid,
.service-link-grid,
.facts-grid,
.deliverable-grid {
    display: grid;
    gap: 20px;
}

.content-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-link-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.facts-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.deliverable-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.info-card,
.service-link,
.fact-item,
.deliverable-item {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
}

.info-card,
.service-link,
.deliverable-item { padding: 26px; }

.info-card .index,
.deliverable-item .index {
    display: block;
    margin-bottom: 16px;
    color: #0d9488;
    font-size: 13px;
    font-weight: 800;
}

.info-card h3,
.service-link h3,
.deliverable-item h3 {
    margin-bottom: 10px;
    color: #0f172a;
    font-size: 20px;
    line-height: 1.4;
}

.info-card p,
.service-link p,
.deliverable-item p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.75;
}

.service-link {
    display: block;
    color: inherit;
    border-top: 3px solid #4f46e5;
}

.service-link:hover {
    color: inherit;
    border-color: #0d9488;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.service-link .link-text {
    display: block;
    margin-top: 18px;
    color: #3730a3;
    font-size: 14px;
    font-weight: 700;
}

.fact-item { padding: 22px; }
.fact-item dt { margin-bottom: 8px; color: #64748b; font-size: 13px; }
.fact-item dd { color: #0f172a; font-size: 17px; font-weight: 700; line-height: 1.55; }

.check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 42px;
    max-width: 960px;
    list-style: none;
}

.check-list li {
    position: relative;
    padding: 16px 0 16px 34px;
    border-bottom: 1px solid #e2e8f0;
    color: #334155;
    line-height: 1.7;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 16px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ccfbf1;
    color: #0f766e;
    text-align: center;
    font-size: 13px;
    font-weight: 800;
    line-height: 22px;
}

.steps {
    max-width: 900px;
    border-top: 1px solid #cbd5e1;
}

.step {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 24px;
    padding: 26px 0;
    border-bottom: 1px solid #cbd5e1;
}

.step-number { color: #0d9488; font-size: 14px; font-weight: 800; }
.step h3 { margin-bottom: 8px; color: #0f172a; font-size: 19px; }
.step p { color: #64748b; line-height: 1.75; }

.notice-box {
    max-width: 900px;
    padding: 24px 26px;
    border-left: 4px solid #d97706;
    background: #fffbeb;
    color: #713f12;
    line-height: 1.8;
}

.faq-list { max-width: 900px; border-top: 1px solid #cbd5e1; }
.faq-list details { border-bottom: 1px solid #cbd5e1; }
.faq-list summary {
    padding: 20px 4px;
    color: #0f172a;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
}
.faq-list details p { padding: 0 4px 22px; color: #64748b; line-height: 1.8; }

.cta-band {
    padding: 58px 0;
    background: #123c3a;
    color: #ffffff;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-band h2 { margin-bottom: 8px; font-size: 29px; letter-spacing: 0; }
.cta-band p { color: #ccfbf1; font-size: 16px; }
.cta-band .btn-secondary { border-color: #ffffff; }

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 44px;
    align-items: start;
}

.contact-methods { border-top: 1px solid #cbd5e1; }
.contact-method {
    padding: 20px 0;
    border-bottom: 1px solid #cbd5e1;
}
.contact-method dt { margin-bottom: 5px; color: #64748b; font-size: 13px; }
.contact-method dd { color: #0f172a; font-size: 17px; font-weight: 700; line-height: 1.6; }
.contact-method dd a { color: #3730a3; }

.contact-form-panel {
    padding: 30px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
}

.contact-form-panel h2 { margin-bottom: 8px; font-size: 25px; }
.contact-form-panel > p { margin-bottom: 24px; color: #64748b; }
.form-row-simple { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; margin-bottom: 7px; color: #334155; font-size: 14px; font-weight: 600; }
.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    background: #ffffff;
    color: #0f172a;
    font: inherit;
}
.field textarea { resize: vertical; min-height: 118px; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: 2px solid #c7d2fe; border-color: #4f46e5; }
.privacy-note { margin-top: 12px; color: #64748b; font-size: 12px; line-height: 1.6; }

.footer-brand > p:first-of-type { margin-bottom: 12px; opacity: 0.8; }

@media (max-width: 900px) {
    .content-grid,
    .service-link-grid { grid-template-columns: 1fr; }
    .facts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
    .page-hero { padding: 48px 0; }
    .page-hero h1 { font-size: 32px; }
    .page-lead { font-size: 17px; }
    .content-band { padding: 52px 0; }
    .section-heading h2 { font-size: 27px; }
    .deliverable-grid,
    .check-list { grid-template-columns: 1fr; }
    .step { grid-template-columns: 58px 1fr; gap: 14px; }
    .cta-inner { align-items: flex-start; flex-direction: column; }
    .form-row-simple { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 480px) {
    .page-hero h1 { font-size: 27px; }
    .facts-grid { grid-template-columns: 1fr; }
    .info-card,
    .service-link,
    .deliverable-item,
    .contact-form-panel { padding: 22px; }
}
