:root {
  --navy: #0d1b33;
  --navy-light: #16294a;
  --accent: #f5a623;
  --accent-dark: #d68a0e;
  --text: #1c2430;
  --text-light: #5a6474;
  --bg-light: #f6f8fb;
  --white: #ffffff;
  --border: #e3e8f0;
  --success: #1e8e3e;
  --radius: 10px;
  --shadow: 0 6px 24px rgba(13, 27, 51, 0.08);
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 0.6em; font-weight: 700; color: var(--navy); }
p { margin: 0 0 1em; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--accent); color: var(--navy); padding: 10px 16px; z-index: 1000; }
.skip-link:focus { left: 0; }

/* Header */
.site-header { background: var(--navy); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,0.15); }
.header-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { color: var(--white); font-weight: 800; font-size: 1.05rem; line-height: 1.15; }
.logo-sub { color: var(--accent); font-weight: 700; }
.footer-logo { display: block; margin-bottom: 12px; color: var(--navy); }

.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav > ul { display: flex; gap: 4px; align-items: center; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a { display: block; padding: 14px 14px; color: var(--white); font-weight: 600; font-size: 0.95rem; }
.main-nav > ul > li > a:hover { color: var(--accent); }
.has-dropdown > .dropdown { display: none; position: absolute; top: 100%; left: 0; background: var(--white); min-width: 240px; box-shadow: var(--shadow); border-radius: var(--radius); overflow: hidden; padding: 6px 0; }
.has-dropdown.open > .dropdown { display: block; }
.dropdown li a { display: block; padding: 10px 18px; color: var(--text); font-weight: 500; }
.dropdown li a:hover { background: var(--bg-light); color: var(--accent-dark); }

.header-call { display: flex; align-items: center; gap: 8px; background: var(--accent); color: var(--navy); font-weight: 700; padding: 10px 18px; border-radius: 30px; white-space: nowrap; }
.header-call:hover { background: var(--accent-dark); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); display: block; }

/* Hero */
.hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); color: var(--white); padding: 70px 20px; }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.hero h1 { color: var(--white); font-size: 2.4rem; margin-bottom: 0.4em; }
.hero .lead { font-size: 1.15rem; color: #cfd8e8; max-width: 540px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.hero-badge { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); padding: 8px 14px; border-radius: 30px; font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 26px; border-radius: 8px; font-weight: 700; font-size: 1rem; cursor: pointer; border: 2px solid transparent; }
.btn-primary { background: var(--accent); color: var(--navy); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--white); }
.btn-block { width: 100%; justify-content: center; }

.hero-panel { background: var(--white); border-radius: 14px; padding: 28px; color: var(--text); box-shadow: 0 20px 50px rgba(0,0,0,0.25); }
.hero-panel h2 { font-size: 1.3rem; }
.hero-panel-list li { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.hero-panel-list li:last-child { border-bottom: none; }
.hero-panel-list svg { flex-shrink: 0; color: var(--success); margin-top: 2px; }

/* Sections */
section { padding: 64px 20px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.section-head .eyebrow { color: var(--accent-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.82rem; }
.bg-light { background: var(--bg-light); }

/* Services grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); transition: transform 0.15s ease; }
.card:hover { transform: translateY(-3px); }
.card .icon-wrap { width: 54px; height: 54px; background: rgba(245,166,35,0.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--accent-dark); }
.card h3 { font-size: 1.15rem; }
.card p { color: var(--text-light); font-size: 0.96rem; }
.card a.card-link { color: var(--accent-dark); font-weight: 700; font-size: 0.9rem; }

/* Two column content */
.two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: start; }
.icon-box-list li { display: flex; gap: 12px; padding: 10px 0; align-items: flex-start; }
.icon-box-list svg { flex-shrink: 0; color: var(--accent-dark); margin-top: 3px; }

.checklist li { display: flex; gap: 10px; padding: 6px 0; }
.checklist svg { color: var(--success); flex-shrink: 0; }

/* Stats */
.stats-bar { background: var(--navy); color: var(--white); }
.stats-bar .grid-3, .stats-bar .grid-4 { text-align: center; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-num { font-size: 2.1rem; font-weight: 800; color: var(--accent); }
.stat-label { color: #cfd8e8; font-size: 0.9rem; }

/* Testimonials */
.testimonial { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.testimonial .stars { color: var(--accent); margin-bottom: 10px; }
.testimonial .name { font-weight: 700; margin-top: 10px; color: var(--navy); }

/* Areas */
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.area-tags a, .area-tags span { background: var(--bg-light); border: 1px solid var(--border); padding: 10px 18px; border-radius: 30px; font-weight: 600; font-size: 0.92rem; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); padding: 18px 0; }
.faq-item summary { font-weight: 700; cursor: pointer; color: var(--navy); font-size: 1.02rem; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--accent-dark); }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { margin-top: 12px; color: var(--text-light); }

/* CTA banner */
.cta-banner { background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: var(--white); text-align: center; border-radius: 16px; padding: 50px 30px; }
.cta-banner h2 { color: var(--white); }
.cta-banner .hero-cta { justify-content: center; }

/* Contact form */
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.92rem; }
.form-row input, .form-row textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px; font-family: inherit; font-size: 0.98rem; }
.form-row input:focus, .form-row textarea:focus { outline: 2px solid var(--accent); border-color: var(--accent); }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.form-note { font-size: 0.82rem; color: var(--text-light); margin-top: 10px; }

/* Page hero (inner pages) */
.page-hero { background: var(--navy); color: var(--white); padding: 48px 20px; }
.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.page-hero h1 { color: var(--white); font-size: 2rem; margin-bottom: 8px; }
.breadcrumbs { font-size: 0.85rem; color: #b9c4d8; margin-bottom: 14px; }
.breadcrumbs a { color: #b9c4d8; }
.breadcrumbs a:hover { color: var(--accent); }

/* Footer */
.site-footer { background: var(--navy); color: #cfd8e8; padding: 56px 20px 20px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-col h3 { color: var(--white); font-size: 1rem; margin-bottom: 14px; }
.footer-col ul li { padding: 5px 0; }
.footer-col a:hover { color: var(--accent); }
.footer-legal-name { font-size: 0.82rem; color: #8b96ab; margin-top: 14px; }
.footer-bottom { max-width: 1200px; margin: 40px auto 0; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; font-size: 0.82rem; color: #8b96ab; text-align: center; }

/* Mobile contact bar */
.mobile-contact-bar { display: none; }

/* Utility */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }

@media (max-width: 980px) {
  .hero-inner, .two-col { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .main-nav { position: fixed; top: 64px; left: 0; right: 0; bottom: 0; background: var(--navy); transform: translateX(-100%); transition: transform 0.25s ease; overflow-y: auto; padding: 10px 0; }
  .main-nav.open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; align-items: stretch; width: 100%; }
  .main-nav > ul > li > a { padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .has-dropdown > .dropdown { position: static; box-shadow: none; border-radius: 0; background: rgba(255,255,255,0.04); display: none; }
  .has-dropdown.open > .dropdown { display: block; }
  .nav-toggle { display: flex; }
  .header-call { display: none; }
  .hero h1 { font-size: 1.7rem; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  section { padding: 44px 16px; }
  .mobile-contact-bar { display: block; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: var(--white); border-top: 1px solid var(--border); padding: 10px 16px; box-shadow: 0 -4px 16px rgba(0,0,0,0.1); }
  .mobile-call-btn { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--accent); color: var(--navy); font-weight: 700; padding: 12px; border-radius: 8px; }
  body { padding-bottom: 70px; }
}
