:root {
  --mea-red: #ff0000;
  --mea-green: #94c11f;
  --mea-olive: #6f9217;
  --mea-light-green: #d8e8a8;
  --ink: #2f3234;
  --muted: #657064;
  --white: #fefefe;
  --soft: #f6f8f1;
  --line: #dce3d4;
  --shadow: 0 18px 50px rgba(17, 17, 17, 0.1);
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--mea-green); outline-offset: 3px; }
.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 6px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}
.brand-logo { width: clamp(108px, 13vw, 150px); height: auto; }
.brand-text { display: grid; line-height: 1.1; }
.brand-text small { color: var(--muted); font-size: 12px; }
.nav-links { display: flex; gap: 4px; margin: 0; padding: 0; list-style: none; }
.nav-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 11px;
  color: var(--muted);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.nav-links a:hover { color: var(--ink); background: var(--soft); }
.header-cta, .btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 17px;
  color: var(--white);
  background: var(--mea-red);
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(226,3,15,.2);
}
.btn-secondary { color: var(--ink); background: var(--white); border-color: #c8cdbe; box-shadow: none; }
.mobile-menu { display: none; position: relative; }
.mobile-menu summary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(320px, calc(100vw - 28px));
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.mobile-menu-panel a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 9px 12px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}
.mobile-menu-panel a:hover { background: var(--soft); }
.mobile-menu-panel .mobile-cta { margin-top: 8px; justify-content: center; color: var(--white); background: var(--mea-red); }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.breadcrumbs { padding: 18px 0 0; color: var(--muted); font-size: 14px; }
.breadcrumbs a { font-weight: 800; text-decoration: none; }
.service-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 9vw, 105px) 0;
  background:
    linear-gradient(100deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.92) 60%, rgba(216,232,168,.55) 100%),
    radial-gradient(circle at 90% 20%, var(--mea-green), transparent 34%);
}
.service-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: linear-gradient(90deg, var(--mea-red), var(--mea-green));
}
.hero-copy { max-width: 800px; }
.eyebrow, .kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--mea-olive);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 22px; font-size: clamp(40px, 6vw, 68px); line-height: 1.05; }
h2 { margin-bottom: 16px; font-size: clamp(30px, 4vw, 46px); line-height: 1.12; }
h3 { font-size: 21px; line-height: 1.25; }
.lead { max-width: 760px; color: var(--muted); font-size: clamp(18px, 2vw, 21px); line-height: 1.65; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.section { padding: clamp(60px, 8vw, 96px) 0; }
.section-soft { background: var(--soft); }
.section-dark { color: var(--white); background: var(--ink); }
.section-head { max-width: 800px; margin-bottom: 34px; }
.section-head p { color: var(--muted); font-size: 18px; }
.section-dark .kicker { color: var(--mea-light-green); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .section-head p { color: rgba(255,255,255,.78); }
.feature-grid, .related-grid, .steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.card {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(17,17,17,.05);
}
.card p { margin-bottom: 0; color: var(--muted); }
.card a { color: var(--mea-olive); font-weight: 900; text-decoration: none; }
.card a:hover { text-decoration: underline; }
.mea-link-wrap { margin: -12px 0 30px; }
.mea-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 9px 14px;
  color: var(--ink);
  background: var(--mea-light-green);
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
}
.mea-link:hover { text-decoration: underline; }
.blog-note {
  padding: 22px;
  color: var(--muted);
  background: var(--white);
  border: 1px dashed #b7c29e;
  border-radius: var(--radius);
}
.check-list { display: grid; gap: 12px; margin: 24px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; color: var(--muted); }
.check-list li::before {
  content: "";
  position: absolute;
  top: .55em;
  left: 0;
  width: 12px;
  height: 12px;
  border: 3px solid var(--mea-green);
  border-radius: 50%;
}
.split { display: grid; grid-template-columns: minmax(0,1fr) minmax(300px,.65fr); gap: clamp(30px,6vw,72px); align-items: center; }
.side-panel { padding: clamp(26px,4vw,40px); background: var(--mea-light-green); border-radius: var(--radius); }
.side-panel p:last-child { margin-bottom: 0; }
.steps { counter-reset: steps; }
.step { position: relative; padding: 62px 24px 24px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); }
.step::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  top: 20px;
  left: 24px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--mea-red);
  border-radius: 6px;
  font-weight: 900;
}
.step p { margin-bottom: 0; color: rgba(255,255,255,.74); }
.faq-list { display: grid; max-width: 900px; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.faq-item summary { padding: 18px 54px 18px 20px; cursor: pointer; font-weight: 900; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; float: right; margin-right: -34px; color: var(--mea-olive); font-size: 24px; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 0; padding: 0 20px 20px; color: var(--muted); }
.contact-band { padding: clamp(46px,7vw,74px) 0; background: var(--mea-light-green); }
.contact-band .split { grid-template-columns: minmax(0,1fr) auto; }
.contact-band h2 { margin-bottom: 10px; }
.contact-band p { margin-bottom: 0; color: #334000; }
.site-footer { padding: 30px 0; color: rgba(255,255,255,.72); background: var(--ink); font-size: 14px; }
.footer-inner { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-links { display: inline-flex; gap: 14px; flex-wrap: wrap; }
.footer-links a { color: var(--white); font-weight: 800; text-decoration: none; }

@media (max-width: 980px) {
  .nav-links, .header-cta { display: none; }
  .mobile-menu { display: block; }
  .feature-grid, .related-grid, .steps { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .split { grid-template-columns: 1fr; }
  .contact-band .split { grid-template-columns: 1fr; }
}

@media (max-width: 650px) {
  .nav, .container, .footer-inner { width: min(100% - 28px, var(--max)); }
  .brand-logo { width: 104px; }
  .brand-text { font-size: 14px; }
  .brand-text small { font-size: 11px; }
  .feature-grid, .related-grid, .steps { grid-template-columns: 1fr; }
  .actions { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .section { padding: 56px 0; }
}
