:root {
  --primary: #1e3a5f;
  --accent: #2c5aa0;
  --bg: #f8f9fa;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --border: #dee2e6;
  --success: #27ae60;
  --warning: #f39c12;
  --error: #e74c3c;
  --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif; line-height: 1.6; color: var(--text-dark); background: var(--bg); }
img, picture, video, svg { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Navigation ---- */
.navbar { background: var(--primary); padding: 1rem 2rem; position: fixed; width: 100%; top: 0; z-index: 100; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
.navbar .logo { font-size: 1.5rem; font-weight: 700; color: var(--white); }
.navbar .links { display: flex; gap: 2rem; }
.navbar .links a { color: rgba(255,255,255,0.8); font-weight: 500; transition: color 0.2s; }
.navbar .links a:hover { color: var(--white); }
.navbar .links .active { color: var(--white); }
.navbar .cta { background: var(--accent); color: var(--white); padding: 0.5rem 1rem; border-radius: 4px; font-weight: 500; white-space: nowrap; }
.navbar .cta:hover { background: #1a4a75; }
.hamburger { display: none; flex-direction: column; gap: 4px; cursor: pointer; }
.hamburger span { width: 25px; height: 3px; background: var(--white); transition: transform 0.3s, opacity 0.3s; }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

/* ---- Mobile Menu ---- */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 70%; max-width: 300px; height: 100vh; background: var(--primary); flex-direction: column; justify-content: center; padding: 2rem; transition: right 0.3s; z-index: 99; }
.mobile-menu.active { right: 0; }
.mobile-menu .links { flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.mobile-menu .cta { width: 100%; text-align: center; }
.close-btn { position: absolute; top: 1rem; right: 1rem; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* ---- Hero (index only) ---- */
.hero { padding: 120px 2rem 60px; background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); color: var(--white); text-align: center; }
.hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.hero p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 2rem; opacity: 0.8; }
.hero .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero .btn-primary { background: var(--white); color: var(--primary); padding: 0.75rem 1.5rem; border-radius: 4px; font-weight: 500; }
.hero .btn-primary:hover { background: #d0d5dd; }
.hero .btn-outline { border: 2px solid var(--white); color: var(--white); padding: 0.75rem 1.5rem; border-radius: 4px; font-weight: 500; }
.hero .btn-outline:hover { background: rgba(255,255,255,0.2); }

/* ---- Services Grid ---- */
.services { padding: 4rem 2rem; }
.services .container { max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 3rem; font-size: 2rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
.service-card { background: var(--white); padding: 2rem; border-radius: 6px; box-shadow: 0 2px 6px rgba(0,0,0,0.05); text-align: center; transition: transform 0.2s; }
.service-card:hover { transform: translateY(-4px); }
.service-card .icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.service-card h3 { margin-bottom: 0.5rem; }
.service-card p { color: var(--text-light); font-size: 0.95rem; }

/* ---- Trust Strip ---- */
.trust-strip { background: var(--primary); color: var(--white); padding: 2rem; text-align: center; margin: 3rem 0; }
.trust-strip p { margin-bottom: 1rem; font-size: 0.95rem; }
.trust-strip .credits { font-size: 0.9rem; opacity: 0.8; }
.trust-strip .company-number { font-weight: 700; color: var(--accent); }

/* ---- CTA Strip ---- */
.cta-strip { background: var(--accent); color: var(--white); padding: 2rem; text-align: center; margin: 3rem 0; }
.cta-strip .btn-primary { background: var(--white); color: var(--primary); padding: 0.75rem 1.5rem; border-radius: 4px; font-weight: 500; }

/* ---- Footer ---- */
.footer { background: var(--text-dark); color: rgba(255,255,255,0.7); padding: 4rem 2rem 2rem; }
.footer .container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.footer .blurb { font-size: 0.9rem; line-height: 1.6; }
.footer h3 { color: var(--white); margin-bottom: 1rem; font-size: 1rem; }
.footer .quick-links a { display: block; margin-bottom: 0.5rem; font-size: 0.85rem; transition: color 0.2s; }
.footer .quick-links a:hover { color: var(--accent); }
.footer .legal a { display: block; margin-bottom: 0.5rem; font-size: 0.85rem; }
.footer .legal a:hover { color: var(--accent); }
.footer .contact p { margin-bottom: 0.5rem; font-size: 0.85rem; }
.footer .copyright { text-align: center; padding-top: 2rem; margin-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.footer .company-info { font-size: 0.85rem; }
.footer .company-number { font-weight: 700; color: var(--accent); }

/* ---- Page Hero (inner pages) ---- */
.page-hero { padding: 6rem 2rem; background: var(--bg); text-align: center; margin-bottom: 3rem; }
.page-hero h1 { font-size: 2rem; margin-bottom: 0.5rem; }
.page-hero p { color: var(--text-light); max-width: 600px; margin: 0 auto; }

/* ---- CTA Strip (inner pages) ---- */
.page-cta { background: var(--accent); color: var(--white); padding: 2rem; text-align: center; margin: 3rem 0; }

/* ---- Services Page Specific ---- */
.services-intro p { margin-bottom: 1.5rem; color: var(--text-light); }

/* ---- Form styles ---- */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; margin-bottom: 0.3rem; font-weight: 500; }
.form-group input, .form-group textarea { width: 100%; padding: 0.5rem; border: 1px solid var(--border); border-radius: 4px; font-family: inherit; }
.form-group textarea { min-height: 120px; resize: vertical; }