:root {
  --primary: #1a3a5c;
  --primary-dark: #0d2137;
  --accent: #f47c20;
  --text: #2d3748;
  --text-light: #718096;
  --bg: #f7f9fc;
  --white: #ffffff;
  --border: #e2e8f0;
  --radius: 10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; color: var(--text); background: var(--bg); line-height: 1.7; }
a { text-decoration: none; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
header { background: var(--primary-dark); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,0.25); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; color: white; font-weight: 800; font-size: 1.05rem; }
.brand svg { width: 32px; height: 32px; flex-shrink: 0; }
.brand em { color: var(--accent); font-style: normal; }
.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a { color: rgba(255,255,255,0.78); font-size: 0.88rem; padding: 6px 12px; border-radius: 6px; transition: color 0.18s, background 0.18s; }
.site-nav a:hover { color: white; background: rgba(255,255,255,0.08); }
.site-nav .btn-nav { background: var(--accent); color: white; font-weight: 700; }
.site-nav .btn-nav:hover { background: #d96a10; }
@media (max-width: 680px) { .site-nav a:not(.btn-nav) { display: none; } }

/* ===== HERO ===== */
.hero-svc { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: white; padding: 56px 0 44px; }
.breadcrumb { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { margin: 0 5px; }
.svc-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(244,124,32,0.2); color: var(--accent); padding: 4px 14px; border-radius: 20px; font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.hero-svc h1 { font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 14px; line-height: 1.2; }
.hero-svc .tagline { font-size: 1.05rem; color: rgba(255,255,255,0.8); max-width: 580px; }

/* ===== CONTENT LAYOUT ===== */
.content-svc { padding: 56px 0 20px; }
.content-grid { display: grid; grid-template-columns: 1fr 320px; gap: 40px; }
@media (max-width: 860px) { .content-grid { grid-template-columns: 1fr; } .sidebar { order: -1; } }

/* ===== MAIN CONTENT ===== */
.main-content h2 { font-size: 1.2rem; color: var(--primary); margin: 30px 0 10px; font-weight: 700; }
.main-content h2:first-child { margin-top: 0; }
.main-content p { margin-bottom: 14px; font-size: 0.96rem; color: #3d4f60; }
.main-content ul { padding-left: 18px; margin-bottom: 16px; }
.main-content li { margin-bottom: 7px; font-size: 0.93rem; color: #3d4f60; }
.main-content strong { color: var(--primary); }

.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 22px 0; }
@media (max-width: 540px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; }
.feature-icon { width: 38px; height: 38px; background: rgba(244,124,32,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; color: var(--accent); }
.feature-card h3 { font-size: 0.92rem; font-weight: 700; color: var(--primary); margin-bottom: 5px; }
.feature-card p { font-size: 0.83rem; color: var(--text-light); margin: 0; line-height: 1.55; }

/* ===== SIDEBAR ===== */
.cta-box { background: var(--primary-dark); color: white; border-radius: var(--radius); padding: 26px; margin-bottom: 18px; }
.cta-box h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.cta-box p { font-size: 0.83rem; color: rgba(255,255,255,0.65); margin-bottom: 18px; line-height: 1.55; }
.btn-cta { display: block; background: var(--accent); color: white; text-align: center; padding: 12px; border-radius: 7px; font-weight: 700; font-size: 0.93rem; margin-bottom: 9px; transition: background 0.2s; }
.btn-cta:hover { background: #d96a10; }
.btn-call { display: block; background: rgba(255,255,255,0.09); color: rgba(255,255,255,0.85); text-align: center; padding: 11px; border-radius: 7px; font-size: 0.88rem; transition: background 0.2s; }
.btn-call:hover { background: rgba(255,255,255,0.15); }

.other-svc-box { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.other-svc-box h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.7px; color: var(--text-light); margin-bottom: 12px; }
.other-svc-box ul { list-style: none; padding: 0; }
.other-svc-box li { border-bottom: 1px solid var(--border); }
.other-svc-box li:last-child { border-bottom: none; }
.other-svc-box a { display: flex; align-items: center; gap: 8px; padding: 9px 0; color: var(--text); font-size: 0.88rem; transition: color 0.18s; }
.other-svc-box a:hover { color: var(--accent); }
.other-svc-box a::before { content: '→'; color: var(--accent); font-size: 0.78rem; }

/* ===== FOOTER ===== */
.page-footer { background: var(--primary-dark); color: rgba(255,255,255,0.6); padding: 28px 0; margin-top: 60px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 0.8rem; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.82rem; transition: color 0.18s; }
.footer-links a:hover { color: white; }
