:root {
  --navy: #0b2c4a;
  --navy-deep: #071e33;
  --navy-mid: #143d5c;
  --green: #1f7a5c;
  --green-dark: #165c45;
  --green-soft: #e8f5f0;
  --text: #1a2332;
  --text-muted: #5a6577;
  --border: #e2e8f0;
  --bg: #ffffff;
  --bg-alt: #f7f9fb;
  --bg-soft: #eef3f7;
  --white: #ffffff;
  --shadow: 0 8px 30px rgba(11, 44, 74, 0.08);
  --radius: 8px;
  --max: 1140px;
  --font: "Source Sans 3", "Segoe UI", sans-serif;
  --font-display: "Libre Franklin", "Source Sans 3", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--green-dark); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
  margin: 0 0 0.75rem;
}
h1 { font-size: clamp(1.9rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; color: var(--text-muted); }
ul, ol { color: var(--text-muted); }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--navy); color: #fff; padding: .75rem 1rem; z-index: 10000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Header */
.topbar {
  background: var(--navy-deep);
  color: #c9d6e3;
  font-size: .85rem;
  padding: .45rem 0;
}
.topbar .container { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.topbar a { color: #c9d6e3; text-decoration: none; }
.topbar a:hover { color: #fff; }
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 72px;
}
.logo {
  display: flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--navy);
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
}
.logo-mark {
  width: 36px; height: 36px; border-radius: 6px;
  background: linear-gradient(145deg, var(--navy) 0%, var(--green) 100%);
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: .95rem;
}
.logo span { display: block; font-size: .72rem; font-weight: 500; color: var(--text-muted); margin-top: 1px; }
.nav {
  display: flex; align-items: center; gap: .15rem; flex-wrap: wrap;
}
.nav a {
  text-decoration: none; color: var(--navy); font-weight: 600; font-size: .92rem;
  padding: .5rem .7rem; border-radius: 6px;
}
.nav a:hover, .nav a[aria-current="page"] { background: var(--bg-soft); color: var(--green-dark); }
.nav .btn { margin-left: .35rem; }
.nav-toggle {
  display: none; border: 1px solid var(--border); background: #fff;
  width: 44px; height: 44px; border-radius: 8px; cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--navy); margin: 4px auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .8rem 1.25rem; border-radius: 6px; font-weight: 700; font-size: .95rem;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  font-family: inherit;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); color: #fff; }
.btn-secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--green-soft); color: var(--navy); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn-group { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; }

/* Hero */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: var(--navy-deep);
  min-height: min(78vh, 640px);
  display: flex; align-items: center;
}
.hero-media {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(7,30,51,.92) 0%, rgba(11,44,74,.78) 48%, rgba(11,44,74,.45) 100%),
    url("../images/hero-office.jpg") center/cover no-repeat;
}
.hero-content { position: relative; z-index: 1; padding: 4.5rem 0 4rem; max-width: 640px; }
.hero-content p { color: #d5e0ea; font-size: 1.12rem; }
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: #8fd4b8; margin-bottom: .85rem;
}
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  color: #fff; padding: 3.25rem 0 2.75rem;
}
.page-hero p { color: #c9d6e3; max-width: 640px; }
.page-hero h1 { color: #fff; }
.breadcrumb { font-size: .85rem; margin-bottom: .85rem; color: #9fb3c5; }
.breadcrumb a { color: #b8d4c8; text-decoration: none; }
.breadcrumb span { margin: 0 .35rem; }

/* Sections */
.section { padding: 4rem 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 680px; margin-bottom: 2.25rem; }
.section-head p { font-size: 1.05rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.1rem; }

.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; height: 100%;
  transition: box-shadow .2s, border-color .2s;
}
.card:hover { box-shadow: var(--shadow); border-color: #c5d4e0; }
.card-icon {
  width: 44px; height: 44px; border-radius: 8px; margin-bottom: 1rem;
  background: var(--green-soft); color: var(--green-dark);
  display: grid; place-items: center; font-weight: 800;
}
.card h3 { margin-bottom: .5rem; }
.card a.more { font-weight: 700; text-decoration: none; color: var(--green); }
.card a.more:hover { text-decoration: underline; }

.feature-media {
  border-radius: 10px; overflow: hidden; min-height: 280px;
  background: var(--bg-soft) center/cover no-repeat;
  box-shadow: var(--shadow);
}
.feature-media.office { background-image: url("../images/about-meeting.jpg"); }
.feature-media.team { background-image: url("../images/team-collab.jpg"); }

.values-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .85rem; }
.values-list li {
  display: flex; gap: .85rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem 1.15rem;
}
.values-list strong { color: var(--navy); display: block; }
.dot {
  flex-shrink: 0; width: 10px; height: 10px; margin-top: .45rem;
  border-radius: 50%; background: var(--green);
}

/* Testimonials */
.quote {
  background: #fff; border-left: 4px solid var(--green);
  border: 1px solid var(--border); border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 1.35rem 1.4rem;
}
.quote p { color: var(--text); font-style: italic; }
.quote footer { color: var(--text-muted); font-size: .9rem; font-style: normal; margin-top: .75rem; }
.quote footer strong { color: var(--navy); }

/* Team */
.team-card { text-align: left; overflow: hidden; padding: 0; }
.team-photo {
  aspect-ratio: 1; background: var(--bg-soft) center/cover;
}
.team-card .body { padding: 1.15rem 1.25rem 1.35rem; }
.team-card .role { color: var(--green-dark); font-weight: 700; font-size: .9rem; margin-bottom: .4rem; }
.team-card .linkedin { font-size: .88rem; text-decoration: none; font-weight: 600; }

/* Steps */
.steps { display: grid; gap: 1rem; counter-reset: step; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem 1.3rem;
}
.step::before {
  counter-increment: step; content: counter(step);
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy); color: #fff; font-weight: 800;
  display: grid; place-items: center; font-size: .95rem;
}
.disclaimer {
  background: #fff8e8; border: 1px solid #f0d9a0; color: #6a5420;
  padding: 1rem 1.15rem; border-radius: var(--radius); font-size: .95rem; margin-top: 1.25rem;
}

/* Forms */
.form {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 700; color: var(--navy); margin-bottom: .35rem; font-size: .92rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .75rem .85rem; border: 1px solid #c9d4e0; border-radius: 6px;
  font: inherit; color: var(--text); background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid rgba(31,122,92,.35); border-color: var(--green);
}
.field textarea { min-height: 130px; resize: vertical; }
.checkbox {
  display: flex; gap: .65rem; align-items: flex-start; font-size: .92rem; color: var(--text-muted);
  margin: 1rem 0 1.25rem;
}
.checkbox input { margin-top: .25rem; }
.form-note { font-size: .85rem; color: var(--text-muted); margin-top: .75rem; }
.form-success {
  display: none; background: var(--green-soft); color: var(--green-dark);
  border: 1px solid #b7e0cf; padding: 1rem; border-radius: 6px; margin-bottom: 1rem;
}
.form-success.show { display: block; }

/* Map */
.map-wrap {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  min-height: 320px; background: var(--bg-soft);
}
.map-wrap iframe { width: 100%; height: 360px; border: 0; display: block; }
.map-actions { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: .75rem; }

/* Blog */
.blog-card { overflow: hidden; padding: 0; }
.blog-thumb { aspect-ratio: 16/9; background: var(--navy-mid) center/cover; }
.blog-card .body { padding: 1.25rem; }
.meta { font-size: .82rem; color: var(--text-muted); margin-bottom: .5rem; }
.article-body { max-width: 760px; }
.article-body h2 { margin-top: 2rem; }
.article-body li { margin-bottom: .4rem; }

/* FAQ */
.faq details {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1rem 1.2rem; margin-bottom: .75rem;
}
.faq summary {
  cursor: pointer; font-weight: 700; color: var(--navy); list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details[open] summary { margin-bottom: .65rem; }
.faq details p { margin: 0; }

/* Legal */
.legal-content { max-width: 820px; }
.legal-content h2 { margin-top: 2rem; font-size: 1.35rem; }
.legal-content h3 { margin-top: 1.35rem; font-size: 1.1rem; }
.legal-content ul { padding-left: 1.2rem; }
.legal-meta { font-size: .9rem; color: var(--text-muted); margin-bottom: 1.5rem; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--navy-deep), var(--navy-mid) 60%, #165c45);
  color: #fff; padding: 3.5rem 0; text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #d5e0ea; max-width: 560px; margin-inline: auto; }

/* Trust strip */
.trust {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  padding: 1.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.trust-item { text-align: center; padding: .5rem; }
.trust-item strong { display: block; color: var(--navy); font-size: 1rem; }
.trust-item span { font-size: .85rem; color: var(--text-muted); }

/* Footer */
.site-footer {
  background: var(--navy-deep); color: #b7c7d6; padding: 3.5rem 0 1.5rem; font-size: .92rem;
}
.site-footer a { color: #d5e2ec; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem;
}
.site-footer h3 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .45rem; }
.footer-brand .logo { color: #fff; margin-bottom: .85rem; }
.footer-brand .logo span { color: #9fb3c5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.25rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .85rem;
}
.footer-legal-links { display: flex; flex-wrap: wrap; gap: .75rem 1.15rem; }
.cookie-settings-btn {
  background: none; border: none; color: #d5e2ec; font: inherit; cursor: pointer;
  padding: 0; text-decoration: underline; text-underline-offset: 2px;
}
.cookie-settings-btn:hover { color: #fff; }

/* Cookie banner */
.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 9999;
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  box-shadow: 0 16px 50px rgba(7,30,51,.2); padding: 1.25rem 1.35rem;
  max-width: 720px; margin-inline: auto; display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner p { margin-bottom: .9rem; font-size: .95rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-modal {
  position: fixed; inset: 0; background: rgba(7,30,51,.55); z-index: 10000;
  display: none; align-items: center; justify-content: center; padding: 1rem;
}
.cookie-modal.show { display: flex; }
.cookie-panel {
  background: #fff; width: min(560px, 100%); border-radius: 10px; padding: 1.5rem;
  max-height: 90vh; overflow: auto;
}
.cookie-cat {
  border: 1px solid var(--border); border-radius: 8px; padding: 1rem; margin-bottom: .75rem;
}
.cookie-cat h4 { margin: 0 0 .35rem; font-size: 1rem; }
.toggle-row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.switch {
  position: relative; width: 46px; height: 26px; flex-shrink: 0;
}
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
  position: absolute; inset: 0; background: #c5d0db; border-radius: 999px; cursor: pointer;
  transition: .2s;
}
.slider::before {
  content: ""; position: absolute; width: 20px; height: 20px; left: 3px; top: 3px;
  background: #fff; border-radius: 50%; transition: .2s;
}
.switch input:checked + .slider { background: var(--green); }
.switch input:checked + .slider::before { transform: translateX(20px); }
.switch input:disabled + .slider { opacity: .7; cursor: not-allowed; }

/* Job list */
.job {
  border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem 1.35rem; background: #fff;
  margin-bottom: .85rem;
}
.job h3 { margin-bottom: .25rem; }
.job .tags { display: flex; flex-wrap: wrap; gap: .4rem; margin: .65rem 0; }
.tag {
  background: var(--bg-soft); color: var(--navy); font-size: .78rem; font-weight: 700;
  padding: .25rem .55rem; border-radius: 4px;
}

/* Process list */
.process { list-style: none; padding: 0; counter-reset: proc; }
.process li {
  counter-increment: proc; position: relative; padding: 1rem 1rem 1rem 3.4rem;
  border-bottom: 1px solid var(--border);
}
.process li::before {
  content: counter(proc); position: absolute; left: 0; top: 1rem;
  width: 28px; height: 28px; border-radius: 50%; background: var(--green-soft);
  color: var(--green-dark); font-weight: 800; display: grid; place-items: center; font-size: .85rem;
}

.office-box {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
}
.office-box strong { color: var(--navy); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

@media (max-width: 980px) {
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .grid-4, .trust, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav-toggle { display: inline-block; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: stretch; padding: .75rem 1rem 1rem;
  }
  .nav.open { display: flex; }
  .nav a { padding: .75rem; }
  .nav .btn { margin: .35rem 0 0; }
  .grid-2, .grid-3, .form-row { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-content { padding: 3.25rem 0 2.75rem; }
}
@media (max-width: 560px) {
  .grid-5, .grid-4, .trust, .footer-grid { grid-template-columns: 1fr; }
  .cookie-banner { left: .5rem; right: .5rem; bottom: .5rem; }
  .footer-bottom { flex-direction: column; }
}
