:root {
  --ink: #10271f;
  --ink-soft: #385249;
  --forest: #123f30;
  --forest-deep: #0b3024;
  --green: #217a52;
  --green-bright: #35a66f;
  --mint: #dff1e8;
  --mint-soft: #eff8f3;
  --sand: #f5f2e9;
  --cloud: #f7faf8;
  --white: #fff;
  --line: rgba(16, 39, 31, 0.13);
  --line-light: rgba(255, 255, 255, 0.14);
  --muted: #61736c;
  --shadow-sm: 0 12px 34px rgba(16, 39, 31, 0.08);
  --shadow-lg: 0 32px 90px rgba(16, 39, 31, 0.18);
  --radius: 18px;
  --shell: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid #53bd85;
  outline-offset: 4px;
  border-radius: 6px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--forest-deep);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(16, 39, 31, 0.08);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  width: min(var(--shell), calc(100% - 48px));
  min-height: 78px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: max-content;
  font-size: 0.94rem;
  letter-spacing: -0.025em;
}

.brand-mark {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 0.78rem 0.78rem 0.78rem 0.25rem;
  background: var(--forest);
  box-shadow: 0 8px 20px rgba(18, 63, 48, 0.18);
}

.brand-mark svg {
  width: 1.25rem;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.8;
}

.brand-mark circle {
  fill: var(--white);
  stroke: none;
}

.brand-name strong {
  color: var(--green);
  font-weight: 760;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.85rem, 2vw, 1.75rem);
  color: #40584f;
  font-size: 0.83rem;
  font-weight: 560;
}

.desktop-nav a,
.login-link,
.footer-columns a,
.footer-bottom a {
  transition: color 150ms ease;
}

.desktop-nav a:hover,
.login-link:hover,
.footer-columns a:hover,
.footer-bottom a:hover {
  color: var(--green);
}

.desktop-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.login-link {
  font-size: 0.84rem;
  font-weight: 720;
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.82rem 1.35rem;
  border: 1px solid var(--forest);
  border-radius: 0.72rem;
  color: var(--white);
  background: var(--forest);
  font-size: 0.87rem;
  font-weight: 740;
  box-shadow: 0 11px 28px rgba(18, 63, 48, 0.17);
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.button:hover {
  border-color: var(--green);
  background: var(--green);
  transform: translateY(-2px);
}

.button-small {
  min-height: 2.7rem;
  padding: 0.64rem 1rem;
}

.button-ghost {
  color: var(--forest);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: none;
}

.button-ghost:hover {
  color: var(--white);
}

.play-icon {
  display: grid;
  width: 1.55rem;
  height: 1.55rem;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green);
  font-size: 0.58rem;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: grid;
  width: 42px;
  height: 42px;
  cursor: pointer;
  list-style: none;
  place-content: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--forest);
}

.mobile-menu nav {
  position: absolute;
  top: 50px;
  right: 0;
  display: grid;
  width: min(280px, calc(100vw - 32px));
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.mobile-menu nav a {
  padding: 0.7rem 0.8rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 650;
}

.mobile-menu nav a:hover {
  color: var(--green);
  background: var(--mint-soft);
}

.hero {
  position: relative;
  min-height: 790px;
  padding-top: 78px;
  overflow: hidden;
  background: linear-gradient(108deg, #fff 4%, #f4faf6 58%, #e5f2eb 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27, 104, 70, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 104, 70, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  mask-image: linear-gradient(90deg, transparent 4%, rgba(0, 0, 0, 0.3) 44%, #000 100%);
}

.hero-atmosphere {
  position: absolute;
  inset: 78px 0 0;
  overflow: hidden;
  pointer-events: none;
}

.coast-glow {
  position: absolute;
  top: -22%;
  right: -7%;
  width: 62vw;
  height: 58vw;
  max-width: 920px;
  max-height: 840px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 167, 121, 0.24), rgba(189, 225, 207, 0.12) 48%, transparent 70%);
}

.city-line {
  position: absolute;
  right: -5%;
  bottom: 6%;
  width: 64%;
  height: 20%;
  border-top: 1px solid rgba(33, 122, 82, 0.12);
  transform: skewY(-4deg);
}

.city-line::before,
.city-line::after {
  position: absolute;
  bottom: 0;
  background: rgba(33, 122, 82, 0.055);
  content: "";
}

.city-line::before {
  left: 18%;
  width: 18%;
  height: 72%;
  clip-path: polygon(8% 100%, 8% 48%, 30% 48%, 30% 20%, 50% 20%, 50% 62%, 72% 62%, 72% 34%, 92% 34%, 92% 100%);
}

.city-line::after {
  right: 12%;
  width: 24%;
  height: 52%;
  clip-path: polygon(0 100%, 0 40%, 18% 40%, 18% 66%, 39% 66%, 39% 10%, 56% 10%, 56% 54%, 74% 54%, 74% 28%, 100% 28%, 100% 100%);
}

.city-line-two {
  right: 18%;
  bottom: 2%;
  opacity: 0.55;
  transform: skewY(3deg) scale(0.72);
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(480px, 0.98fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  width: min(var(--shell), calc(100% - 48px));
  min-height: 710px;
  margin-inline: auto;
  padding: 5rem 0 5.5rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.05rem;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 1.4rem;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
.section-heading h2,
.closing-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 660px;
  margin-bottom: 1.55rem;
  font-size: clamp(3.35rem, 5.7vw, 5.25rem);
  letter-spacing: -0.056em;
  line-height: 0.99;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 2rem;
  color: #496158;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-truths {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin-top: 1.55rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 620;
}

.hero-truths span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-truths i,
.proof-grid i {
  display: block;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 4px rgba(53, 166, 111, 0.12);
}

.hero-visual {
  position: relative;
  min-height: 570px;
  border: 1px solid rgba(33, 122, 82, 0.16);
  border-radius: 34px 34px 34px 10px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(229, 243, 235, 0.56)),
    var(--mint-soft);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.hero-visual::after {
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(33, 122, 82, 0.08);
  border-radius: 23px;
  content: "";
}

.morocco-shape {
  position: absolute;
  top: -6%;
  right: -3%;
  width: 78%;
  height: 112%;
  object-fit: contain;
  opacity: 0.6;
  filter: drop-shadow(0 20px 30px rgba(33, 122, 82, 0.09));
}

.map-roads {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

.road {
  position: absolute;
  width: 70%;
  height: 38%;
  border: 2px solid rgba(33, 122, 82, 0.35);
  border-color: rgba(33, 122, 82, 0.36) transparent transparent rgba(33, 122, 82, 0.36);
  border-radius: 50%;
}

.road-one { top: 15%; left: 7%; transform: rotate(-17deg); }
.road-two { top: 46%; right: -8%; transform: rotate(154deg) scale(0.85); opacity: 0.6; }
.road-three { bottom: -4%; left: -8%; transform: rotate(15deg) scale(0.65); opacity: 0.4; }

.map-node {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(33, 122, 82, 0.12);
}

.node-one { top: 22%; left: 20%; }
.node-two { top: 40%; right: 13%; }
.node-three { right: 38%; bottom: 14%; }

.search-card,
.result-card,
.layer-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(16, 39, 31, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.search-card {
  top: 8%;
  left: -6%;
  width: 76%;
  padding: 1rem;
  border-radius: 16px;
}

.card-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}

.product-chip {
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: -0.02em;
}

.demo-chip {
  padding: 0.25rem 0.48rem;
  border-radius: 999px;
  color: var(--green);
  background: var(--mint-soft);
  font-size: 0.58rem;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.search-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.63rem;
}

.search-field {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.8rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(33, 122, 82, 0.2);
  border-radius: 10px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 650;
}

.search-field img { width: 20px; }

.search-action {
  display: grid;
  width: 1.65rem;
  height: 1.65rem;
  place-items: center;
  border-radius: 7px;
  color: var(--white);
  background: var(--forest);
}

.result-card {
  top: 36%;
  right: -6%;
  width: 82%;
  padding: 1.15rem;
  border-radius: 18px;
}

.result-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.result-kicker {
  color: var(--green);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.result-header h2 {
  margin: 0.42rem 0 0.16rem;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}

.result-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.verified-mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-bright);
  font-size: 0.9rem;
  font-weight: 850;
  box-shadow: 0 0 0 6px rgba(53, 166, 111, 0.12);
}

.status-row {
  display: flex;
  gap: 0.45rem;
  margin: 1rem 0;
  padding: 0.8rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 750;
}

.status i {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: currentColor;
}

.status-green { color: #187348; background: #e3f5eb; }
.status-teal { color: #166d68; background: #e3f4f2; }

.quality-block {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.quality-copy span,
.quality-copy strong {
  display: block;
}

.quality-copy span { color: var(--muted); font-size: 0.62rem; }
.quality-copy strong { margin-top: 0.15rem; font-size: 0.76rem; }
.quality-copy small { color: var(--muted); font-size: 0.58rem; font-weight: 600; }

.quality-bars {
  display: flex;
  gap: 3px;
}

.quality-bars span {
  width: 22px;
  height: 5px;
  border-radius: 99px;
  background: #dce5e0;
}

.quality-bars .active { background: var(--green-bright); }

.layer-card {
  bottom: 7%;
  left: 5%;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 210px;
  padding: 0.8rem;
  border-radius: 14px;
}

.layer-icon {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 9px;
  color: var(--green);
  background: var(--mint-soft);
  font-weight: 850;
}

.layer-card small,
.layer-card strong { display: block; }
.layer-card small { color: var(--muted); font-size: 0.58rem; }
.layer-card strong { margin-top: 0.12rem; font-size: 0.72rem; }

.benefits {
  padding-top: 7.5rem;
  padding-bottom: 8rem;
}

.section-heading h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.45rem, 4.1vw, 4rem);
  letter-spacing: -0.048em;
  line-height: 1.05;
}

.section-heading > p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.02rem;
}

.centered-heading {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.benefit-card {
  min-height: 270px;
  padding: 1.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 4px 18px rgba(16, 39, 31, 0.035);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.benefit-card:hover {
  border-color: rgba(33, 122, 82, 0.28);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.feature-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 13px;
  color: var(--green);
  background: var(--mint-soft);
}

.feature-icon svg {
  width: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.benefit-card h3 {
  margin: 3rem 0 0.7rem;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.capabilities {
  padding: 7.5rem 0 8rem;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(74, 170, 116, 0.2), transparent 34%),
    var(--forest-deep);
}

.capabilities-shell {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(3rem, 8vw, 7rem);
}

.inverse-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.inverse-heading > p:last-child { color: #b9cec4; }
.light-eyebrow { color: #86d4aa; }

.capability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-light);
}

.capability-grid article {
  min-height: 220px;
  padding: 1.8rem 1.5rem 1.8rem 0;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.capability-grid article:nth-child(even) {
  padding-right: 0;
  padding-left: 1.5rem;
  border-right: 0;
}

.capability-grid span {
  color: #75c89a;
  font-size: 0.68rem;
  font-weight: 800;
}

.capability-grid h3 {
  margin: 2.3rem 0 0.65rem;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.capability-grid p {
  margin: 0;
  color: #acc3b8;
  font-size: 0.84rem;
}

.solutions {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.solutions-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 3rem;
  margin-bottom: 3rem;
}

.solutions-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -1rem;
}

.solutions-heading h2 { margin-bottom: 0; }
.solutions-heading > p:last-child { margin-bottom: 0; }

.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.sector-grid article {
  display: flex;
  min-height: 145px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background 150ms ease;
}

.sector-grid article:hover { background: var(--mint-soft); }

.sector-grid span {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--mint-soft);
  font-size: 1.05rem;
}

.sector-grid h3 {
  max-width: 190px;
  margin: 0;
  text-align: right;
  font-size: 0.96rem;
}

.proof-band {
  padding: 6.5rem 0;
  color: var(--white);
  background: var(--forest);
}

.proof-band > .section-shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
}

.proof-intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 3.4vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line-light);
}

.proof-grid p {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 0.3rem 0.75rem;
  margin: 0;
  padding: 1.2rem 1.1rem 1.2rem 0;
  border-bottom: 1px solid var(--line-light);
}

.proof-grid p:nth-child(even) { padding-left: 1.1rem; }
.proof-grid i { grid-row: 1 / 3; margin-top: 0.4rem; }
.proof-grid strong { font-size: 0.86rem; }
.proof-grid span { color: #b9cec4; font-size: 0.76rem; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}

.info-grid article {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cloud);
}

.info-grid article:nth-child(2) { background: var(--sand); }
.info-grid article:nth-child(3) { background: var(--mint-soft); }

.info-grid h2 {
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.info-grid p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.88rem;
}

.info-grid a {
  margin-top: auto;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 760;
}

.closing-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3rem;
  width: min(var(--shell), calc(100% - 48px));
  margin: 0 auto 6rem;
  padding: clamp(2.5rem, 6vw, 5rem);
  overflow: hidden;
  border-radius: 26px 26px 26px 8px;
  color: var(--white);
  background: var(--forest-deep);
}

.cta-map {
  position: absolute;
  top: -60%;
  right: -8%;
  width: 52%;
  height: 190%;
  border: 1px solid rgba(126, 201, 157, 0.18);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.cta-map::before,
.cta-map::after {
  position: absolute;
  border: 1px solid rgba(126, 201, 157, 0.16);
  border-radius: 50%;
  content: "";
}

.cta-map::before { inset: 12%; }
.cta-map::after { inset: 27%; }

.cta-copy,
.cta-actions { position: relative; z-index: 1; }

.closing-cta h2 {
  max-width: 750px;
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 4.8vw, 4.5rem);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.closing-cta p:last-child { margin-bottom: 0; color: #b9cec4; }

.cta-actions {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 0.7rem;
  min-width: 205px;
}

.button-light {
  border-color: var(--white);
  color: var(--forest);
  background: var(--white);
}

.button-light:hover { border-color: var(--mint); color: var(--forest); background: var(--mint); }

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--white);
  background: transparent;
  box-shadow: none;
}

.button-outline-light:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); }

.site-footer {
  color: #d4e2db;
  background: #09261d;
}

.footer-main {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 6rem;
  padding-top: 4.5rem;
  padding-bottom: 4rem;
}

.footer-brand-block .brand-name strong { color: #78c99d; }
.footer-brand-block p { max-width: 340px; margin: 1.2rem 0 0; color: #9eb6ab; font-size: 0.84rem; }

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.footer-columns div { display: flex; flex-direction: column; align-items: flex-start; gap: 0.7rem; }

.footer-columns h2 {
  margin: 0 0 0.4rem;
  color: var(--white);
  font-family: inherit;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-columns a { color: #9eb6ab; font-size: 0.78rem; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #829d90;
  font-size: 0.75rem;
}

.footer-bottom p { margin: 0; }

@media (max-width: 1100px) {
  .desktop-nav { gap: 0.9rem; }
  .hero-shell { grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr); gap: 3rem; }
  .search-card { left: -2%; }
  .result-card { right: -2%; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .benefit-card { min-height: 240px; }
}

@media (max-width: 900px) {
  .desktop-nav,
  .desktop-actions { display: none; }
  .nav-shell { grid-template-columns: 1fr auto; }
  .mobile-menu { display: block; }
  .hero { min-height: auto; }
  .hero-shell { grid-template-columns: 1fr; padding-top: 4.5rem; }
  .hero-copy { max-width: 720px; }
  .hero-visual { width: min(680px, 92%); margin: 1rem auto 0; }
  .capabilities-shell { grid-template-columns: 1fr; }
  .inverse-heading { position: static; max-width: 720px; }
  .solutions-heading { grid-template-columns: 1fr; gap: 1rem; }
  .solutions-heading .eyebrow { margin-bottom: 0; }
  .sector-grid { grid-template-columns: 1fr 1fr; }
  .proof-band > .section-shell { grid-template-columns: 1fr; gap: 3rem; }
  .footer-main { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 720px) {
  .section-shell,
  .nav-shell,
  .hero-shell,
  .closing-cta { width: min(100% - 32px, var(--shell)); }
  .brand-name { font-size: 0.85rem; }
  .hero-shell { padding-top: 3.7rem; }
  h1 { font-size: clamp(2.85rem, 12vw, 4.4rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-visual { width: 100%; min-height: 520px; }
  .search-card { top: 6%; left: 4%; width: 88%; }
  .result-card { top: 38%; right: 4%; width: 88%; }
  .layer-card { bottom: 6%; }
  .benefits { padding-top: 5.5rem; padding-bottom: 6rem; }
  .benefit-grid,
  .capability-grid,
  .sector-grid,
  .proof-grid,
  .info-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 220px; }
  .capabilities { padding: 5.5rem 0; }
  .capability-grid article,
  .capability-grid article:nth-child(even) { min-height: auto; padding: 1.7rem 0; border-right: 0; }
  .proof-grid p:nth-child(even) { padding-left: 0; }
  .solutions { padding-top: 5.5rem; padding-bottom: 5.5rem; }
  .sector-grid article { min-height: 120px; }
  .info-grid { padding-top: 5.5rem; padding-bottom: 5.5rem; }
  .info-grid article { min-height: 280px; }
  .closing-cta { grid-template-columns: 1fr; align-items: stretch; margin-bottom: 0; padding: 2.2rem; border-radius: 20px 20px 0 0; }
  .cta-actions { min-width: 0; }
  .footer-columns { grid-template-columns: 1fr 1fr; gap: 2.2rem 1.5rem; }
}

@media (max-width: 430px) {
  html { scroll-padding-top: 76px; }
  .nav-shell { min-height: 70px; }
  .brand-mark { width: 2.15rem; height: 2.15rem; }
  .hero { padding-top: 70px; }
  .hero-shell { padding-top: 3rem; padding-bottom: 4rem; }
  .eyebrow { font-size: 0.64rem; letter-spacing: 0.1em; }
  h1 { font-size: 2.85rem; }
  .hero-lead { font-size: 1rem; }
  .hero-truths { align-items: flex-start; flex-direction: column; gap: 0.65rem; }
  .hero-visual { min-height: 455px; border-radius: 24px 24px 24px 8px; }
  .search-card { padding: 0.8rem; }
  .demo-chip { display: none; }
  .result-card { top: 37%; padding: 0.9rem; }
  .status-row { margin: 0.75rem 0; padding: 0.65rem 0; }
  .quality-bars span { width: 16px; }
  .layer-card { left: 4%; min-width: 190px; }
  .section-heading h2 { font-size: 2.4rem; }
  .benefit-grid { gap: 0.75rem; }
  .benefit-card { min-height: 210px; padding: 1.4rem; }
  .benefit-card h3 { margin-top: 2.3rem; }
  .capability-grid article { min-height: auto; }
  .sector-grid h3 { font-size: 0.88rem; }
  .proof-band { padding: 5rem 0; }
  .footer-main { padding-top: 3.5rem; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 0.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
