* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: #1a2233; background: #fff; line-height: 1.6; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.site-header { background: #1a2233; color: #fff; padding: 16px 0; }
.nav-bar { display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 1.4em; font-weight: 800; color: #fff; text-decoration: none; }
.logo span { color: #f97316; }
.main-nav { display: flex; gap: 24px; }
.main-nav a { color: #e8edf2; text-decoration: none; font-weight: 500; }
.main-nav a:hover { color: #f97316; }
.hero { padding: 80px 0 60px; background: linear-gradient(180deg, #f4f7fb 0%, #fff 100%); }
.hero h1 { font-size: 2.4em; font-weight: 800; line-height: 1.2; margin-bottom: 16px; max-width: 800px; }
.hero-sub { font-size: 1.15em; color: #4b5563; max-width: 720px; line-height: 1.6; }
.btn { display: inline-block; padding: 12px 24px; border-radius: 8px; text-decoration: none; font-weight: 600; transition: all 0.2s; }
.btn-primary { background: #f97316; color: #fff; }
.btn-primary:hover { background: #ea580c; }
.btn-secondary { background: #fff; color: #1a2233; border: 2px solid #1a2233; }
.btn-secondary:hover { background: #1a2233; color: #fff; }
.info-content { padding: 50px 0; }
.info-content + .info-content { padding-top: 0; }
.info-content .container { max-width: 820px; }
.info-content h2 { font-size: 1.8em; font-weight: 700; margin-bottom: 16px; }
.info-content h3 { font-size: 1.3em; font-weight: 600; margin-top: 24px; margin-bottom: 12px; color: #1a2233; }
.info-content p { line-height: 1.7; margin-bottom: 14px; color: #334155; }
.info-content strong { color: #1a2233; }
.cost-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.95em; }
.cost-table th, .cost-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid #e5e7eb; }
.cost-table th { background: #f4f7fb; font-weight: 600; }
.action-panel { background: #1a2233; color: #e8edf2; padding: 28px 0; border-top: 3px solid #f97316; border-bottom: 1px solid #0f1620; }
.action-panel .container { max-width: 820px; }
.action-panel h2 { color: #e8edf2; margin: 0 0 8px; font-size: 1.3em; }
.action-panel p { margin: 8px 0; line-height: 1.6; }
.action-panel .action-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-top: 16px; }
.action-panel .action-item { background: rgba(255,255,255,.05); padding: 14px; border-radius: 6px; border-left: 3px solid #f97316; }
.action-panel .action-item strong { color: #fbbf24; display: block; margin-bottom: 4px; font-size: 0.95em; }
.step-list { counter-reset: step; padding-left: 0; list-style: none; }
.step-list li { counter-increment: step; padding: 12px 0 12px 48px; position: relative; border-bottom: 1px solid #eee; }
.step-list li::before { content: counter(step); position: absolute; left: 0; top: 12px; width: 32px; height: 32px; background: #f97316; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; }
.step-list li:last-child { border-bottom: none; }
.site-footer { background: #0f1620; color: #94a3b8; padding: 40px 0 20px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 24px; }
.footer-col h2 { color: #fff; font-size: 1em; font-weight: 600; margin-bottom: 12px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { color: #94a3b8; text-decoration: none; }
.footer-col a:hover { color: #f97316; }
.footer-tagline { font-size: 0.9em; line-height: 1.5; margin-top: 8px; }
.footer-logo { color: #fff; font-size: 1.2em; }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 20px; font-size: 0.85em; color: #64748b; }
@media (max-width: 768px) {
  .hero h1 { font-size: 1.8em; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .main-nav { gap: 12px; flex-wrap: wrap; }
}
