/* Reset & base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: #1a1a2e; background: #fff; line-height: 1.6; }
img { max-width: 100%; }
a { color: #1d4ed8; }

/* Typography */
h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; line-height: 1.2; }
h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 700; margin: 2rem 0 1rem; }
h3 { font-size: 1.1rem; font-weight: 600; margin: 1.2rem 0 0.5rem; }
p  { margin-bottom: 1rem; }

/* Layout */
.container { max-width: 860px; margin: 0 auto; padding: 0 1.25rem; }
section { padding: 2.5rem 0; }
section + section { border-top: 1px solid #e5e7eb; }

/* Header */
header { background: #0f2057; color: #fff; padding: 1rem 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,.25); }
header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.site-name { font-weight: 800; font-size: 1.15rem; color: #fff; text-decoration: none; }
.header-cta { background: #f97316; color: #fff; padding: .5rem 1.1rem; border-radius: 6px; text-decoration: none; font-weight: 700; font-size: .9rem; white-space: nowrap; }
.header-cta:hover { background: #ea6c0a; }

/* Hero */
.hero { background: linear-gradient(135deg, #0f2057 0%, #1d3a8a 100%); color: #fff; padding: 3rem 0; }
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero p  { color: #c7d2fe; font-size: 1.1rem; margin-bottom: 1.75rem; max-width: 620px; }
.cta-group { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Buttons */
.btn { display: inline-block; padding: .75rem 1.6rem; border-radius: 8px; font-weight: 700; text-decoration: none; font-size: 1rem; transition: transform .1s, box-shadow .1s; }
.btn:active { transform: scale(.98); }
.btn-primary { background: #f97316; color: #fff; box-shadow: 0 4px 14px rgba(249,115,22,.4); }
.btn-primary:hover { background: #ea6c0a; color: #fff; }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-outline:hover { border-color: #fff; }

/* Trust bar */
.trust-bar { background: #f8faff; border-bottom: 1px solid #e5e7eb; padding: .75rem 0; }
.trust-bar .container { display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; align-items: center; font-size: .9rem; color: #4b5563; }
.trust-item::before { content: '✓ '; color: #16a34a; font-weight: 700; }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.step { text-align: center; padding: 1.25rem; background: #f8faff; border-radius: 10px; }
.step-num { width: 44px; height: 44px; background: #0f2057; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; margin: 0 auto .75rem; }

/* Pricing table */
table { width: 100%; border-collapse: collapse; margin-top: 1rem; font-size: .95rem; }
th { background: #0f2057; color: #fff; padding: .65rem 1rem; text-align: left; }
td { padding: .6rem 1rem; border-bottom: 1px solid #e5e7eb; }
tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: #f8faff; }

/* Service areas */
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: .5rem; margin-top: 1rem; }
.area-grid a { display: block; padding: .5rem .85rem; background: #f1f5f9; border-radius: 6px; color: #1d4ed8; text-decoration: none; font-size: .9rem; }
.area-grid a:hover { background: #dbeafe; }

/* FAQ */
.faq-item { border: 1px solid #e5e7eb; border-radius: 8px; margin-bottom: .75rem; overflow: hidden; }
.faq-q { font-weight: 600; padding: 1rem 1.25rem; background: #f8faff; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-q::after { content: '+'; font-size: 1.3rem; color: #6b7280; flex-shrink: 0; }
details[open] .faq-q::after { content: '−'; }
.faq-a { padding: 1rem 1.25rem; color: #374151; }

/* CTA section */
.cta-section { background: #0f2057; color: #fff; text-align: center; padding: 3rem 0; }
.cta-section h2 { color: #fff; margin-top: 0; }
.cta-section p  { color: #c7d2fe; margin-bottom: 1.75rem; }

/* Sticky mobile bar */
.sticky-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: #f97316; padding: .85rem 1.25rem; text-align: center; z-index: 200; box-shadow: 0 -2px 10px rgba(0,0,0,.2); }
.sticky-bar a { color: #fff; font-weight: 800; font-size: 1.05rem; text-decoration: none; }

/* Footer */
footer { background: #111827; color: #9ca3af; padding: 1.5rem 0; font-size: .85rem; text-align: center; }
footer a { color: #6b7280; }

/* Breadcrumb */
.breadcrumb { font-size: .85rem; color: #6b7280; margin-bottom: 1rem; }
.breadcrumb a { color: #6b7280; }
.breadcrumb span::before { content: ' › '; }

/* Responsive */
@media (max-width: 600px) {
  .sticky-bar { display: block; }
  body { padding-bottom: 60px; }
  header .header-cta { display: none; }
}