/* ========== 基础样式 ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0a1628;
    --primary-light: #1a2d4a;
    --gold: #c9a227;
    --gold-light: #e8c547;
    --text: #e8e8e8;
    --text-muted: #8a9bb3;
    --bg-card: rgba(26, 45, 74, 0.6);
    --border: rgba(201, 162, 39, 0.2);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    background: var(--primary);
    color: var(--text);
    line-height: 1.6;
}

/* ========== 导航栏 ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.5rem;
    margin-left: 0.25rem;
    filter: sepia(1) saturate(3) hue-rotate(10deg) brightness(1.1);
}

.logo-text {
    font-family: Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
}

.gold { color: var(--gold); }

.logo-slogan {
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin-left: 0.5rem;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--gold); }

.nav-admin {
    padding: 0.5rem 1rem;
    border: 1px solid var(--gold);
    border-radius: 4px;
}

/* Responsive Navigation for Mobile */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
        flex-wrap: wrap;
    }

    .logo {
        order: 1;
        width: 100%;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .logo-slogan {
        font-size: 1rem;
    }

    .nav-links {
        order: 2;
        width: 100%;
        justify-content: center;
        gap: 1rem;
        margin-top: 0.5rem;
    }

    .nav-links a {
        font-size: 0.9rem;
        padding: 0.5rem;
    }
}

/* Responsive adjustments for medium screens */
@media (max-width: 1100px) and (min-width: 769px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 1.25rem;
    }

    .logo-slogan {
        font-size: 1.25rem;
        margin-left: 0.25rem;
    }
}

/* ========== Hero 区域 ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 2rem 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(201, 162, 39, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(26, 45, 74, 0.8) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid var(--gold);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.hero h1 {
    font-family: Georgia, 'Noto Serif SC', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.hero-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.deco-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.1;
}

.line-1 { top: 30%; left: 0; right: 0; height: 1px; }
.line-2 { top: 70%; left: 0; right: 0; height: 1px; }

.deco-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: 50%;
}

/* ========== 授权码查询卡片 ========== */
.auth-code-card {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, rgba(26,45,74,0.6) 100%);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.auth-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold) 0%, #e8c547 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.auth-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}
.auth-card-content {
    flex: 1;
    min-width: 150px;
}
.auth-card-title {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}
.auth-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.auth-card-form {
    display: flex;
    gap: 0.75rem;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}
.auth-card-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(10,22,40,0.8);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 0.95rem;
    transition: all 0.3s;
}
.auth-card-form input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
}
.auth-card-form button {
    padding: 0.75rem 1.5rem;
    background: var(--gold);
    color: var(--primary);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    white-space: nowrap;
}
.auth-card-form button svg {
    width: 18px;
    height: 18px;
}
.auth-card-form button:hover {
    background: var(--gold-light);
    transform: translateX(2px);
}

@media (max-width: 600px) {
    .auth-code-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    .auth-card-form {
        width: 100%;
        max-width: none;
    }
}

/* ========== 通用 Section ========== */
section { padding: 4rem 2rem; }

/* Modules section specific padding */
.modules-section { padding: 4rem 2rem; }

/* Service system section specific padding */
.service-system-section { padding: 4rem 2rem; }

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: Georgia, 'Noto Serif SC', serif;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-header p { color: var(--text-muted); }

/* Ensure clear separation between modules and service system sections */
.modules-section {
    background: var(--primary);
    display: block;
    position: relative;
}

.service-system-section {
    background: var(--primary-light);
    display: block;
    position: relative;
    margin-top: 0; /* Reduced from 2rem to eliminate excessive space */
    padding-top: 5rem; /* Add sufficient padding to account for fixed navbar */
}

/* In desktop screens, add more specific spacing */
@media (min-width: 769px) {
    .service-system-section {
        margin-top: 0;
        padding-top: 6rem; /* Adjusted for desktop screens */
    }
}

/* On smaller screens, optimize spacing */
@media (max-width: 768px) {
    .service-system-section {
        margin-top: 0;
        padding-top: 5rem; /* Slightly reduced for mobile */
    }
}

/* Add negative margin to section header to adjust positioning */
.service-system-section .section-header {
    margin-top: -4rem; /* Offset to account for the fixed navbar */
}

.modules-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.module-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.module-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 162, 39, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.module-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
}

.module-number {
    font-family: Georgia, serif;
    font-size: 2rem;
    color: rgba(201, 162, 39, 0.2);
    font-weight: 700;
}

.module-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.module-card > p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.sub-modules { display: flex; flex-direction: column; gap: 0.75rem; }

.sub-module {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(10, 22, 40, 0.5);
    border: 1px solid transparent;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s;
}

.sub-module:hover {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
}

.sub-icon {
    width: 32px;
    height: 32px;
    background: var(--gold);
    color: var(--primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.sub-module span:nth-child(2) { flex: 1; }

.price {
    font-size: 0.875rem;
    color: var(--gold);
}

/* ========== 使用流程 ========== */
.process-section {
    background: var(--primary-light);
    padding: 1.25rem;
    border-radius: 12px;
}

.process-section .section-header {
    margin-bottom: 0.75rem;
}

.process-section .section-header h2 {
    font-size: 1.5rem;
}

.process-timeline {
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.75rem 0.875rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--gold);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Georgia, serif;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content { flex: 1; }
.step-content h4 { margin-bottom: 0.1rem; font-size: 0.85rem; }
.step-content p { color: var(--text-muted); font-size: 0.75rem; }

.step-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
}

.process-connector {
    width: 2px;
    height: 10px;
    background: var(--gold);
    margin-left: 2.5rem;
    opacity: 0.3;
}

/* ========== 价格 ========== */
.pricing-section { background: var(--primary); }

/* 三列布局中的价格区块 */
.pricing-section-inline {
    background: var(--primary-light);
    padding: 1.25rem;
    border-radius: 12px;
}

.pricing-section-inline .section-header {
    margin-bottom: 0.75rem;
}

.pricing-section-inline .section-header h2 {
    font-size: 1.5rem;
}

.pricing-cards-inline {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-cards-inline .pricing-card {
    padding: 0.875rem;
}

.pricing-cards-inline .pricing-features li {
    padding: 0.25rem 0;
    font-size: 0.75rem;
}

.pricing-cards-inline .pricing-header {
    margin-bottom: 0.625rem;
    padding-bottom: 0.625rem;
}

.pricing-cards-inline .amount {
    font-size: 1.75rem;
}

.pricing-cards {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, var(--bg-card) 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gold);
    color: var(--primary);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-header { text-align: center; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.pricing-header h3 { margin-bottom: 0.5rem; }

.pricing-amount { display: flex; align-items: baseline; justify-content: center; gap: 0.25rem; }
.currency { font-size: 1.5rem; color: var(--gold); }
.amount { font-size: 3rem; font-weight: 700; color: var(--gold); }
.total { color: var(--text-muted); }

.pricing-features { list-style: none; }
.pricing-features li { display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem 0; color: var(--text-muted); }
.pricing-features svg { width: 20px; height: 20px; fill: var(--gold); flex-shrink: 0; }

/* ========== 下载区域 ========== */
.download-section { background: var(--primary-light); }

.download-container {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.download-container h2 { margin-bottom: 0.5rem; }
.download-container p { color: var(--text-muted); margin-bottom: 2rem; }

.download-form {
    display: flex;
    gap: 1rem;
}

.download-form input {
    flex: 1;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 1rem;
}

.download-form input:focus { outline: none; border-color: var(--gold); }

.download-form button {
    padding: 1rem 2rem;
    background: var(--gold);
    color: var(--primary);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.download-form button:hover { background: var(--gold-light); }

/* ========== 页脚 ========== */
.footer {
    background: rgba(10, 22, 40, 0.95);
    border-top: 1px solid var(--border);
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand p { color: var(--text-muted); font-size: 0.875rem; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
.footer-copyright { color: var(--text-muted); font-size: 0.875rem; }

/* ========== 流程图 + 价格 + 使用流程 三列并排布局 ========== */
.flowchart-pricing-process-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* 在小屏幕上改为单列堆叠 */
@media (max-width: 768px) {
    .flowchart-pricing-process-wrapper {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1.5rem;
    }
}

/* 在中等屏幕上改为单列堆叠 */
@media (max-width: 1100px) and (min-width: 769px) {
    .flowchart-pricing-process-wrapper {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1.5rem;
    }
}

/* 标准化服务流程样式 */
.flowchart-section {
    background: var(--primary-light);
    padding: 1.25rem;
    border-radius: 12px;
}

.flowchart-section .section-header {
    margin-bottom: 0.75rem;
}

.flowchart-section .section-header h2,
.pricing-section-inline .section-header h2,
.process-section .section-header h2 {
    font-size: 1.5rem;
}

.flowchart-section .section-header p,
.pricing-section-inline .section-header p,
.process-section .section-header p {
    font-size: 0.8rem;
}

.flowchart-container {
    max-width: 100%;
    margin: 0;
}

.service-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.flow-btn {
    padding: 0.4rem 0.75rem;
    background: rgba(10, 22, 40, 0.5);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
}

.flow-btn svg {
    width: 13px;
    height: 13px;
    stroke: var(--gold);
}

.flow-btn:hover {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
}

.flow-btn.active {
    background: var(--gold);
    color: var(--primary);
    border-color: var(--gold);
}

.flow-btn.active svg {
    stroke: var(--primary);
}

.flowchart-display {
    background: rgba(10, 22, 40, 0.5);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.75rem;
}

.flowchart-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.625rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.flowchart-header svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
}

.flowchart-header h3 {
    font-size: 0.9rem;
    color: var(--text);
}

.flowchart-steps {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.flow-step-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.625rem;
    background: rgba(10, 22, 40, 0.5);
    border-radius: 4px;
    transition: all 0.3s;
}

.flow-step-item:hover {
    background: rgba(201, 162, 39, 0.1);
}

.step-indicator {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    flex-shrink: 0;
}

.step-indicator.step-primary { background: var(--gold); }
.step-indicator.step-secondary { background: var(--gold-light); }
.step-indicator.step-success { background: #28a745; }

.flow-step-item span {
    color: var(--text);
    font-size: 0.75rem;
}

.flowchart-description {
    margin-top: 0.625rem;
    padding: 0.5rem 0.625rem;
    background: rgba(201, 162, 39, 0.08);
    border-left: 2px solid var(--gold);
    border-radius: 0 4px 4px 0;
    color: var(--text-muted);
    font-size: 0.7rem;
}

/* 平台优势小标签 ========== */
.advantages-tags {
    max-width: 100%;
    margin: 0.75rem auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

/* 增强移动端体验 */
@media (max-width: 768px) {
    /* 增加移动端的间距 */
    .modules-section,
    .service-system-section {
        padding: 2rem 1rem !important; /* 确保移动端有足够的内边距 */
    }

    /* 调整移动端标题大小 */
    .section-header {
        margin-bottom: 2.5rem;
    }

    /* 调整移动端网格间隙 */
    .modules-grid {
        gap: 1rem;
    }
}

/* 针对中等屏幕优化 */
@media (max-width: 1100px) and (min-width: 769px) {
    .section-header {
        margin-bottom: 3rem;
    }

    .modules-grid {
        gap: 1.25rem;
    }
}

/* 确保在所有设备上都有适当的底部边距 */
.modules-section,
.service-system-section {
    min-height: auto; /* 确保不是固定高度 */
    margin-bottom: 0;
}

.advantage-tag {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.625rem;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50px;
    transition: all 0.3s;
}

.advantage-tag:hover {
    background: rgba(201, 162, 39, 0.2);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.advantage-tag svg {
    width: 13px;
    height: 13px;
    stroke: var(--gold);
    flex-shrink: 0;
}

.advantage-tag span {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text);
}

/* ========== 响应式 ========== */
/* 手机端标题缩小 */
@media (max-width: 768px) {
    /* 功能模块和服务体系的外层标题统一缩小 */
    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header .section-tag {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    /* Hero 区域标题缩小 */
    .hero h1 {
        font-size: 2rem;
    }

    /* 卡片内边距缩小 */
    .module-card,
    .flowchart-section,
    .pricing-section-inline,
    .process-section {
        padding: 1.25rem;
    }

    /* Section padding 缩小 */
    section {
        padding: 3rem 1rem;
    }

    .modules-section,
    .service-system-section {
        padding: 3rem 1rem;
    }

    .hero h1 { font-size: 2.5rem; }
    .modules-grid { grid-template-columns: 1fr; }
    .pricing-cards { grid-template-columns: 1fr; }
    .download-form { flex-direction: column; }
    .footer-content { flex-direction: column; text-align: center; }
    .service-selector { gap: 0.5rem; }
    .flow-btn { padding: 0.5rem 1rem; font-size: 0.85rem; }
    .advantages-tags { gap: 0.75rem; }
    .advantage-tag { padding: 0.5rem 0.875rem; }
    .advantage-tag span { font-size: 0.85rem; }
}

/* 优化平板端（768px - 1100px） */
@media (max-width: 1100px) and (min-width: 769px) {
    .section-header h2 {
        font-size: 2rem;
    }

    /* 平板横屏 / 小桌面: 2x2 布局 */
    .modules-grid { grid-template-columns: repeat(2, 1fr); }
    .flowchart-pricing-process-wrapper { grid-template-columns: 1fr; }
}

/* Specific adjustment for anchor targets to account for fixed navbar */
#service-system:target {
    scroll-margin-top: 80px;
}

/* Additional adjustment for all section targets */
section[id] {
    scroll-margin-top: 80px;
}

/* Sidebar icons */
.sidebar-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
    stroke: var(--gold);
    flex-shrink: 0;
}

/* Ensure all content is visible when targeted */
.flowchart-pricing-process-wrapper {
    padding-top: 1rem; /* Reduce padding since section now handles spacing */
}
