
:root {
  --navy: #0c1d3a;
  --navy-dark: #081428;
  --orange: #ff6a13;
  --orange-dark: #e85a00;
  --bg: #ffffff;
  --bg-alt: #f6f8fb;
  --text: #1a2233;
  --muted: #5b6577;
  --border: #e3e8f0;
  --radius: 10px;
  --shadow: 0 6px 24px rgba(12,29,58,0.08);
  --shadow-lg: 0 18px 48px rgba(12,29,58,0.16);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; height: auto; }
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-dark); }
h1, h2, h3, h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; line-height: 1.15; color: var(--navy); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.4rem; }
p { color: var(--muted); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 820px; }
.center { text-align: center; }
.mt-3 { margin-top: 2rem; }
.eyebrow { display: inline-block; color: var(--orange); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.85rem; margin-bottom: 0.6rem; }
.accent { color: var(--orange); }

/* Buttons */
.btn { display: inline-block; padding: 0.85rem 1.6rem; border-radius: var(--radius); font-weight: 600; font-size: 0.95rem; transition: all 0.2s; border: 2px solid transparent; cursor: pointer; text-align: center; }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.05rem; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-secondary { background: var(--navy); color: #fff; }
.btn-secondary:hover { background: var(--navy-dark); color: #fff; transform: translateY(-2px); }
.btn-outline { border-color: #fff; color: #fff; background: transparent; }
.btn-outline:hover { background: #fff; color: var(--navy); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.topbar { background: var(--navy); color: #c5d3e8; font-size: 0.85rem; padding: 0.5rem 0; }
.topbar a { color: #c5d3e8; }
.topbar-inner { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.nav-wrap { display: flex; align-items: center; gap: 1.5rem; padding: 0.9rem 20px; }
.brand img { height: 50px; width: auto; }
.main-nav { display: flex; gap: 1.4rem; margin-left: auto; flex-wrap: wrap; }
.main-nav a { color: var(--navy); font-weight: 600; font-size: 0.95rem; padding: 0.4rem 0; border-bottom: 2px solid transparent; }
.main-nav a:hover, .main-nav a.active { color: var(--orange); border-color: var(--orange); }
.btn-call { background: var(--orange); color: #fff; padding: 0.7rem 1.2rem; border-radius: var(--radius); font-weight: 700; }
.btn-call:hover { background: var(--orange-dark); color: #fff; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.8rem; color: var(--navy); cursor: pointer; }

/* Hero */
.hero { position: relative; min-height: 640px; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,20,40,0.92) 0%, rgba(8,20,40,0.65) 60%, rgba(8,20,40,0.4) 100%); }
.hero-content { position: relative; z-index: 2; padding: 5rem 20px; max-width: 760px; }
.hero-content h1 { color: #fff; margin: 0.5rem 0 1.2rem; }
.hero-content .lead { color: #d6dde8; font-size: 1.15rem; margin-bottom: 2rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 1.5rem; color: #fff; font-weight: 500; }
.hero-trust li { font-size: 0.95rem; }

/* Sections */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head p { margin-top: 0.8rem; }

/* Service grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.8rem; }
.service-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all 0.3s; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-img { height: 200px; background-size: cover; background-position: center; }
.service-body { padding: 1.6rem; }
.service-body h3 { margin-bottom: 0.6rem; }
.link-arrow { font-weight: 600; display: inline-block; margin-top: 0.8rem; }

/* Two-col */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.img-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.img-frame img { width: 100%; }
.center-frame { max-width: 720px; margin: 0 auto; }
.checklist { list-style: none; margin: 1.2rem 0; }
.checklist li { padding: 0.5rem 0 0.5rem 1.8rem; position: relative; color: var(--text); }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 700; }

/* Service rows */
.service-row { padding: 4rem 0; border-bottom: 1px solid var(--border); }
.service-row:nth-child(even) { background: var(--bg-alt); }
.service-row.reverse .two-col > div:first-child { order: 2; }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); color: #fff; padding: 3.5rem 0; }
.cta-band-inner { display: flex; gap: 2rem; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: 0.4rem; }
.cta-band p { color: #c5d3e8; }
.cta-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-band .btn-secondary { background: #fff; color: var(--navy); }
.cta-band .btn-secondary:hover { background: #f0f0f0; }

/* Areas */
.areas-grid { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }
.area-chip { display: inline-block; padding: 0.6rem 1.2rem; background: #fff; border: 1px solid var(--border); border-radius: 999px; color: var(--navy); font-weight: 500; font-size: 0.95rem; transition: all 0.2s; }
.area-chip:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.areas-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.4rem; }
.area-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem; transition: all 0.2s; }
.area-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.area-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.6rem; }
.testi-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow); }
.testi-card .stars { color: #ffb400; font-size: 1.1rem; margin-bottom: 0.6rem; }
.testi-card p { font-style: italic; color: var(--text); margin-bottom: 1rem; }
.testi-card cite { font-style: normal; display: block; }
.testi-card cite strong { display: block; color: var(--navy); }
.testi-card cite span { color: var(--muted); font-size: 0.9rem; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.4rem; }
.step { background: #fff; padding: 1.8rem; border-radius: var(--radius); border-top: 4px solid var(--orange); }
.step span { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 2.4rem; color: var(--orange); font-weight: 800; line-height: 1; margin-bottom: 0.6rem; }
.step h4 { color: var(--navy); margin-bottom: 0.4rem; font-size: 1.2rem; }

/* Page hero */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); color: #fff; padding: 4.5rem 0; text-align: center; }
.page-hero h1 { color: #fff; margin-bottom: 0.6rem; }
.page-hero p { color: #c5d3e8; font-size: 1.1rem; }

/* FAQ */
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 0.8rem; padding: 1.2rem 1.5rem; }
.faq-item summary { font-weight: 600; cursor: pointer; color: var(--navy); font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::after { content: "+"; font-size: 1.6rem; color: var(--orange); }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin-top: 0.8rem; }

/* Contact */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form label { display: flex; flex-direction: column; gap: 0.4rem; font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.contact-form input, .contact-form select, .contact-form textarea { padding: 0.8rem 1rem; border: 1px solid var(--border); border-radius: 8px; font-family: inherit; font-size: 1rem; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--orange); }
.contact-info p { margin-bottom: 1.2rem; }
.contact-info strong { color: var(--navy); }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 1.5rem; }

/* Legal */
.legal h2 { margin-top: 1.8rem; margin-bottom: 0.6rem; font-size: 1.5rem; }
.legal p { margin-bottom: 0.8rem; color: var(--text); }

/* Footer */
.site-footer { background: var(--navy-dark); color: #c5d3e8; padding: 3.5rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.2fr; gap: 2rem; }
.site-footer h4 { color: #fff; margin-bottom: 1rem; font-size: 1.15rem; }
.site-footer p, .site-footer li { color: #a3b3c9; font-size: 0.95rem; margin-bottom: 0.5rem; }
.site-footer ul { list-style: none; }
.site-footer a { color: #c5d3e8; }
.site-footer a:hover { color: var(--orange); }
.site-footer img { margin-bottom: 1rem; background: #fff; padding: 0.6rem; border-radius: 6px; max-width: 180px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; margin-top: 2.5rem; text-align: center; font-size: 0.9rem; color: #8595ad; }

/* Floating call */
.float-call { display: none; position: fixed; bottom: 20px; right: 20px; background: var(--orange); color: #fff; width: 58px; height: 58px; border-radius: 50%; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: var(--shadow-lg); z-index: 99; }

/* Responsive */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .service-row.reverse .two-col > div:first-child { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: block; order: 3; margin-left: auto; }
  .btn-call { padding: 0.5rem 0.9rem; font-size: 0.85rem; }
  .main-nav { display: none; flex-direction: column; width: 100%; padding: 1rem 0; gap: 0.6rem; order: 4; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.6rem 0; border-bottom: 1px solid var(--border); }
  .nav-wrap { flex-wrap: wrap; gap: 0.6rem; }
  .topbar-inner { gap: 1rem; font-size: 0.78rem; }
  .hero { min-height: auto; }
  .hero-content { padding: 4rem 20px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .section { padding: 3.5rem 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .float-call { display: flex; }
  .cta-band-inner { text-align: center; justify-content: center; }
  .cta-buttons { justify-content: center; width: 100%; }
}
