:root {
  --ink: #252a34;
  --muted: #626a78;
  --green: #153e8f;
  --green-2: #2057b6;
  --mint: #e4ecfb;
  --lime: #5590ed;
  --cream: #f4f6f9;
  --white: #ffffff;
  --line: #dce2ec;
  --shadow: 0 18px 50px rgba(35, 45, 68, 0.11);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, .brand strong { font-family: "Manrope", Arial, sans-serif; }
h1 { margin-bottom: 24px; font-size: clamp(3.2rem, 7vw, 6.2rem); line-height: .98; letter-spacing: -.065em; }
h2 { margin-bottom: 0; font-size: clamp(2.25rem, 4.5vw, 4.1rem); line-height: 1.08; letter-spacing: -.05em; }
h3 { margin-bottom: 12px; font-size: 1.18rem; line-height: 1.3; letter-spacing: -.025em; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 110px 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; z-index: 100; top: 10px; left: 10px; padding: 10px 14px;
  color: var(--white); background: var(--green); transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
  color: var(--green-2); font-size: .76rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
}
.eyebrow span { width: 26px; height: 2px; background: var(--lime); }
.eyebrow.light { color: var(--mint); }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 54px; padding: 13px 22px;
  border: 1px solid var(--green); border-radius: 8px; color: var(--white); background: var(--green);
  font-weight: 700; transition: transform .2s, background .2s, border-color .2s;
}
.button:hover, .button:focus-visible { background: var(--green-2); border-color: var(--green-2); transform: translateY(-2px); }
.button-secondary { color: var(--green); background: transparent; }
.button-secondary:hover, .button-secondary:focus-visible { color: var(--white); background: var(--green); }
.button-small { min-height: 44px; padding: 9px 17px; font-size: .9rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }

.site-header {
  position: sticky; z-index: 50; top: 0; height: 78px; background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(220,227,223,.8); backdrop-filter: blur(15px);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand img { display: block; width: 218px; height: auto; }
.brand-mark {
  display: grid; place-items: center; width: 39px; height: 39px; color: var(--white); background: var(--green);
  border-radius: 9px 9px 9px 2px; font-family: "Manrope", Arial, sans-serif; font-size: 1.2rem; font-weight: 800;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-size: .98rem; letter-spacing: -.02em; }
.brand-text span { margin-top: 4px; color: var(--muted); font-size: .64rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: 29px; font-size: .92rem; font-weight: 600; }
.primary-nav > a:not(.button) { position: relative; }
.primary-nav > a:not(.button)::after {
  content: ""; position: absolute; right: 0; bottom: -7px; left: 0; height: 2px; background: var(--lime);
  transform: scaleX(0); transition: transform .2s;
}
.primary-nav > a:not(.button):hover::after, .primary-nav > a:not(.button):focus-visible::after { transform: scaleX(1); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: none; }
.nav-toggle span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--green); transition: .2s; }

.hero { position: relative; overflow: hidden; padding: 96px 0 88px; background: var(--cream); }
.hero::before {
  content: ""; position: absolute; top: -250px; left: -150px; width: 600px; height: 600px; opacity: .35;
  background: radial-gradient(circle, var(--mint) 0 35%, transparent 36%); background-size: 24px 24px;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.17fr .83fr; align-items: center; gap: 90px; }
.hero-copy { max-width: 720px; }
.hero-lead { max-width: 660px; margin-bottom: 32px; color: var(--muted); font-size: 1.2rem; line-height: 1.7; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 20px; margin: 27px 0 0; padding: 0; color: var(--muted); font-size: .88rem; list-style: none; }
.hero-points span { color: var(--green-2); font-weight: 700; }
.hero-panel {
  position: relative; background: var(--white); border: 1px solid var(--line); border-radius: 4px 24px 24px 24px; box-shadow: var(--shadow);
  transform: rotate(1deg);
}
.panel-top { display: flex; align-items: center; gap: 9px; padding: 16px 22px; color: var(--green); background: var(--mint); border-radius: 4px 24px 0 0; font-size: .78rem; font-weight: 700; }
.status-dot { width: 8px; height: 8px; background: var(--green-2); border-radius: 50%; box-shadow: 0 0 0 5px rgba(32,87,182,.15); }
.hero-panel-body { padding: 32px; }
.panel-label { margin-bottom: 18px; color: var(--muted); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.problem-list { margin: 0; padding: 0; list-style: none; }
.problem-list li { display: flex; align-items: center; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.problem-list li:first-child { border-top: 1px solid var(--line); }
.problem-list span { color: var(--green-2); font-family: "Manrope", Arial, sans-serif; font-size: .72rem; font-weight: 800; }
.problem-list strong { font-size: .96rem; }
.panel-note { margin: 24px 0 0; color: var(--muted); font-size: .88rem; }

.trust-strip { color: var(--white); background: #303641; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { display: flex; align-items: center; gap: 17px; padding: 29px 28px; border-right: 1px solid rgba(255,255,255,.13); }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border: 0; }
.trust-icon { display: grid; place-items: center; flex: 0 0 40px; width: 40px; height: 40px; color: var(--lime); border: 1px solid rgba(255,255,255,.2); border-radius: 50%; font-size: 1.2rem; }
.trust-item div { display: flex; flex-direction: column; }
.trust-item strong { font-size: .92rem; }
.trust-item span:last-child { margin-top: 2px; color: rgba(255,255,255,.65); font-size: .75rem; }

.section-heading { display: grid; grid-template-columns: 1fr .55fr; align-items: end; gap: 80px; margin-bottom: 50px; }
.section-heading h2 { max-width: 750px; }
.section-heading > p { margin: 0; color: var(--muted); }
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.service-card {
  position: relative; min-height: 290px; padding: 31px; overflow: hidden; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); transition: transform .25s, border-color .25s, box-shadow .25s;
}
.service-card:hover { border-color: #aaccc0; box-shadow: var(--shadow); transform: translateY(-5px); }
.service-card.featured-card { background: var(--cream); }
.service-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.service-icon { display: grid; place-items: center; width: 45px; height: 45px; margin-bottom: 43px; color: var(--green); background: var(--mint); border-radius: 10px; font-weight: 800; }
.card-number { position: absolute; top: 30px; right: 30px; color: #9aaba6; font-size: .68rem; font-weight: 700; letter-spacing: .12em; }

.about { overflow: hidden; background: var(--cream); }
.about-grid { max-width: 920px; }
.about-copy .lead { margin: 28px 0 17px; color: var(--ink); font-size: 1.15rem; font-weight: 600; }
.about-copy > p:not(.eyebrow):not(.lead) { color: var(--muted); }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 35px; padding-top: 30px; border-top: 1px solid #ccd7d2; }
.values-grid div { display: flex; flex-direction: column; }
.values-grid strong { margin-bottom: 3px; color: var(--green); font-size: .9rem; }
.values-grid span { color: var(--muted); font-size: .79rem; }


.engagements { background: var(--white); }
.engagement-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 15px; }
.engagement-card {
  grid-column: span 2; padding: 30px; background: var(--cream); border: 1px solid transparent; border-radius: var(--radius);
}
.engagement-card:nth-child(4) { grid-column: 2 / span 2; }
.engagement-card.highlighted { color: var(--white); background: var(--green); }
.engagement-card p { min-height: 96px; color: var(--muted); font-size: .88rem; }
.engagement-card.highlighted p { color: rgba(255,255,255,.68); }
.engagement-tag {
  display: inline-block; margin-bottom: 42px; padding: 5px 9px; color: var(--green-2); background: var(--mint); border-radius: 30px;
  font-size: .65rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
}
.engagement-card a { display: flex; align-items: center; justify-content: space-between; padding-top: 17px; border-top: 1px solid #d4ddd8; color: var(--green); font-size: .8rem; font-weight: 700; }
.engagement-card.highlighted a { color: var(--lime); border-color: rgba(255,255,255,.2); }

.contact { color: var(--white); background: #252a34; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
.contact-copy h2 { margin-bottom: 25px; }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.67); }
.contact-details { display: grid; gap: 12px; margin-top: 42px; }
.contact-details > * { display: flex; align-items: center; gap: 15px; color: var(--white); }
.contact-details > * > span { display: grid; place-items: center; width: 39px; height: 39px; color: var(--lime); border: 1px solid rgba(255,255,255,.17); border-radius: 50%; }
.contact-details div div, .contact-details a div { display: flex; flex-direction: column; font-weight: 600; }
.contact-details small { color: rgba(255,255,255,.5); font-size: .67rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.contact-form { padding: 39px; color: var(--ink); background: var(--white); border-radius: 4px 22px 22px; }
.form-row { margin-bottom: 18px; }
.form-row.two-column { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
label { display: block; margin-bottom: 7px; font-size: .76rem; font-weight: 700; }
.optional { color: var(--muted); font-weight: 400; }
input, textarea, select {
  width: 100%; padding: 12px 13px; color: var(--ink); background: #fafbf9; border: 1px solid #ced9d4; border-radius: 6px; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
textarea { resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--green-2); box-shadow: 0 0 0 3px rgba(29,89,80,.12); }
.form-submit { width: 100%; margin-top: 4px; }
.form-status { display: none; margin: 14px 0 0; padding: 10px 12px; color: var(--green); background: var(--mint); border-radius: 6px; font-size: .8rem; }
.form-status.visible { display: block; }
.form-status.error { color: #7d2828; background: #f9dddd; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.site-footer { color: rgba(255,255,255,.66); background: #171b22; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.3fr .8fr; align-items: center; gap: 40px; padding-top: 55px; padding-bottom: 45px; }
.footer-brand { padding: 10px 14px; background: var(--white); border-radius: 8px; }
.footer-brand img { width: 230px; }
.footer-brand .brand-text strong { color: var(--white); }
.footer-brand .brand-text span { color: rgba(255,255,255,.5); }
.footer-grid p { margin: 0; font-size: .8rem; }
.footer-grid nav { display: flex; justify-content: flex-end; gap: 18px; color: var(--white); font-size: .75rem; font-weight: 600; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 20px; padding-bottom: 20px; border-top: 1px solid rgba(255,255,255,.09); font-size: .69rem; }

@media (max-width: 980px) {
  .section { padding: 85px 0; }
  .nav-toggle { display: block; }
  .primary-nav {
    position: fixed; inset: 78px 0 auto; display: grid; gap: 0; padding: 16px 20px 24px; background: var(--white);
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow); transform: translateY(-140%); transition: transform .25s;
  }
  .primary-nav.open { transform: translateY(0); }
  .primary-nav a { padding: 14px 5px; }
  .primary-nav .button { margin-top: 8px; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 65px; }
  .hero-copy { max-width: none; }
  .hero-panel { width: min(100%, 620px); }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .section-heading > p { max-width: 650px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .engagement-card { grid-column: span 3; }
  .engagement-card:nth-child(4) { grid-column: span 3; }
  .contact-grid { gap: 55px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid nav { justify-content: flex-start; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 70px 0; }
  h1 { font-size: clamp(2.7rem, 15vw, 4.4rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .hero { padding-top: 65px; }
  .button-row { display: grid; }
  .button-row .button { width: 100%; }
  .hero-points { display: grid; gap: 6px; }
  .hero-panel-body { padding: 25px; }
  .trust-grid { grid-template-columns: 1fr; padding: 12px 0; }
  .trust-item, .trust-item:first-child { padding: 16px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .values-grid { grid-template-columns: 1fr; gap: 15px; }
  .engagement-grid { grid-template-columns: 1fr; }
  .engagement-card, .engagement-card:nth-child(4) { grid-column: auto; }
  .engagement-card p { min-height: auto; }
  .contact-form { padding: 25px 20px; }
  .form-row.two-column { grid-template-columns: 1fr; }
  .footer-grid nav { flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
