* { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --bg: #0D1B2A; --bg-alt: #0A1A12; --bg-strip: rgba(232,82,26,0.05);
      --text: #F5F5F5; --text-muted: #AAAAAA; --text-sub: #888888; --border: #1a3020;
      --card-bg: #0A1A12; --accent: #EA580C; --accent-dark: #C94D09;
      --header-bg: rgba(13,27,42,0.97); --shadow: 0 4px 24px rgba(0,0,0,0.4);
    }
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; font-size: 16px; }
    .site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: var(--header-bg); border-bottom: 1px solid var(--border); backdrop-filter: blur(12px); box-shadow: var(--shadow); }
    .header-inner { max-width: 1100px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
    .header-logo { font-size: 15px; font-weight: 700; color: var(--text); white-space: nowrap; text-decoration: none; }
    .header-logo span { color: var(--accent); }
    .header-phone { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; color: var(--text); text-decoration: none; }
    .header-phone:hover { color: var(--accent); }
    .article-wrap { max-width: 720px; margin: 0 auto; padding: 140px 24px 40px; }
    .breadcrumb { font-size: 13px; color: var(--text-sub); margin-bottom: 24px; }
    .breadcrumb a { color: var(--accent); text-decoration: none; }
    .article-label { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
    .article-title { font-size: 34px; font-weight: 700; line-height: 1.25; letter-spacing: -0.01em; margin-bottom: 16px; }
    @media (min-width: 768px) { .article-title { font-size: 42px; } }
    .article-dek { font-size: 18px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
    .article-meta { font-size: 13px; color: var(--text-sub); padding-bottom: 32px; border-bottom: 1px solid var(--border); margin-bottom: 40px; }
    .article-body h2 { font-size: 24px; font-weight: 700; margin: 40px 0 16px; }
    .article-body p { font-size: 16px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.75; }
    .article-body ul { margin: 0 0 20px 20px; }
    .article-body li { font-size: 16px; color: var(--text-muted); margin-bottom: 10px; line-height: 1.6; }
    .article-body strong { color: var(--text); }
    .callout { background: var(--card-bg); border: 1px solid var(--border); border-left: 4px solid var(--accent); border-radius: 6px; padding: 20px 24px; margin: 32px 0; font-size: 15px; color: var(--text-muted); line-height: 1.6; }
    .callout strong { color: var(--accent); }
    .cta-band { background: var(--bg-strip); border: 1px solid var(--border); border-radius: 12px; padding: 40px 32px; margin: 48px 0 16px; text-align: center; }
    .cta-band h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
    .cta-band p { font-size: 15px; color: var(--text-muted); margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }
    .btn { display: inline-block; background: var(--accent); color: #fff; font-size: 15px; font-weight: 600; padding: 16px 40px; border-radius: 8px; text-decoration: none; transition: background 0.2s; }
    .btn:hover { background: var(--accent-dark); }
    .cta-phone { display: block; margin-top: 16px; font-size: 15px; font-weight: 600; color: var(--accent); text-decoration: none; }
    .footer-section { padding: 48px 24px; background: var(--bg); border-top: 1px solid var(--border); text-align: center; margin-top: 40px; }
    .footer-links { margin-bottom: 24px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; font-size: 14px; }
    .footer-links a { color: var(--text-muted); text-decoration: none; }
    .footer-links a:hover { color: var(--accent); }
    .footer-disclaimer { max-width: 800px; margin: 0 auto 24px; font-size: 12px; color: var(--text-sub); line-height: 1.6; }
    .footer-copyright { font-size: 12px; color: var(--text-sub); }