:root {
  color-scheme: light;
  --ink: #10231a;
  --ink-soft: #405349;
  --muted: #6d7a73;
  --green: #247b52;
  --green-dark: #123f2d;
  --green-deep: #082d20;
  --green-black: #061f17;
  --mint: #e8f3eb;
  --mint-bright: #a8dbb8;
  --teal: #176d72;
  --amber: #b77924;
  --warm: #f4f1e9;
  --soft: #f3f7f4;
  --surface: #ffffff;
  --line: #d9e2dc;
  --line-dark: rgba(255, 255, 255, 0.17);
  --shadow: 0 24px 70px rgba(10, 47, 31, 0.14);
  --shadow-soft: 0 16px 44px rgba(10, 47, 31, 0.08);
  --content: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

section[id] { scroll-margin-top: 78px; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink);
  font-family: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
main, section, article, figure, .hero__copy, .hero__visual { min-width: 0; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, p, figure, ul, ol { margin-top: 0; }
h1, h2, h3 { margin-bottom: 0; letter-spacing: -0.045em; overflow-wrap: break-word; }
p { overflow-wrap: break-word; }

h1 { font-size: clamp(3.65rem, 6vw, 6.8rem); line-height: 0.94; }
h2 { font-size: clamp(2.65rem, 4.2vw, 4.55rem); line-height: 1.02; }
h3 { font-size: 1.35rem; line-height: 1.22; }

::selection { background: #bfe4c9; color: var(--green-deep); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--green-deep);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transform: translateY(-150%);
}

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

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 10px max(24px, calc((100vw - 1460px) / 2 + 24px));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 226, 220, 0.76);
  backdrop-filter: blur(18px);
  transition: min-height 180ms ease, box-shadow 180ms ease;
}

.topbar.is-scrolled { min-height: 68px; box-shadow: 0 8px 30px rgba(10, 47, 31, 0.06); }

.brand { display: block; width: 175px; height: 60px; overflow: hidden; text-decoration: none; }
.brand img { width: 100%; height: 100%; object-fit: contain; }
.topbar > .brand img { object-position: left center; }

.nav { display: flex; justify-content: center; gap: 34px; color: var(--ink-soft); font-size: 0.88rem; font-weight: 700; }
.nav a { position: relative; text-decoration: none; }
.nav a::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; background: var(--green); content: ""; transform: scaleX(0); transition: transform 180ms ease; }
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); }

.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 23px; height: 2px; margin: 6px auto; background: var(--ink); transition: transform 180ms ease; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--green); color: #fff; box-shadow: 0 13px 28px rgba(36, 123, 82, 0.2); }
.button--primary:hover { background: var(--green-dark); }
.button--small { min-height: 44px; padding: 0 17px; font-size: 0.8rem; }
.button--large { min-height: 58px; padding: 0 28px; }
.button--light { background: #fff; color: var(--green-deep); }
.button--light:hover { background: var(--mint); }

.eyebrow { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; color: var(--amber); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 1px; background: currentColor; }
.eyebrow--light { color: #a9ddb9; }

.hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.85fr) minmax(560px, 1.15fr);
  gap: 58px;
  align-items: center;
  min-height: 100svh;
  max-width: 1460px;
  margin: 0 auto;
  padding: 126px 24px 62px;
}

.hero__copy { position: relative; z-index: 2; }
.hero h1 { max-width: 730px; font-size: clamp(3.25rem, 4.6vw, 5.4rem); overflow-wrap: normal; }
.hero h1 em { color: var(--green); font-style: normal; }
.hero__text { max-width: 610px; margin: 28px 0 0; color: var(--ink-soft); font-size: 1.12rem; }
.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 25px; margin-top: 34px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--green-dark); font-size: 0.88rem; font-weight: 800; text-decoration: none; }
.text-link span, .solution-card__link span, .contact__email span { transition: transform 180ms ease; }
.text-link:hover span, .solution-card__link:hover span, .contact__email:hover span { transform: translateX(4px); }
.hero__proofs { display: flex; flex-wrap: wrap; gap: 10px 25px; margin: 34px 0 0; padding: 26px 0 0; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 0.78rem; font-weight: 700; list-style: none; }
.hero__proofs li { position: relative; padding-left: 17px; }
.hero__proofs li::before { position: absolute; top: 0.52em; left: 0; width: 7px; height: 7px; background: var(--green); border-radius: 50%; content: ""; }

.hero__visual { position: relative; min-height: 670px; overflow: hidden; background: var(--mint); border-radius: 8px; box-shadow: var(--shadow); }
.hero__visual > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__visual-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5, 31, 22, 0.02) 35%, rgba(5, 31, 22, 0.7) 100%); }
.hero__caption { position: absolute; right: 28px; bottom: 25px; left: 28px; max-width: 380px; margin: 0; color: rgba(255,255,255,.88); font-size: .75rem; font-weight: 600; }
.hero__marker { position: absolute; width: 29px; height: 29px; border: 1px solid rgba(255,255,255,.72); border-radius: 50%; }
.hero__marker::before { position: absolute; inset: -8px; border: 1px solid rgba(255,255,255,.25); border-radius: inherit; content: ""; }
.hero__marker i { position: absolute; inset: 9px; background: #fff; border-radius: 50%; }
.hero__marker--one { top: 33%; left: 65%; }
.hero__marker--two { top: 52%; left: 38%; }
.hero__data-card { position: absolute; top: 32px; right: 30px; display: flex; align-items: center; gap: 12px; padding: 13px 16px; background: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.75); border-radius: 7px; box-shadow: 0 12px 30px rgba(8,45,32,.16); backdrop-filter: blur(12px); }
.hero__data-icon { display: grid; place-items: center; width: 35px; height: 35px; background: var(--mint); border-radius: 50%; }
.hero__data-icon svg { width: 18px; fill: none; stroke: var(--green); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.hero__data-card small, .hero__data-card strong { display: block; }
.hero__data-card small { color: var(--muted); font-size: .62rem; }
.hero__data-card strong { margin-top: 1px; font-size: .75rem; }

.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust__inner { display: grid; grid-template-columns: 220px 1fr; align-items: center; gap: 65px; max-width: var(--content); margin: 0 auto; padding: 32px 24px; }
.trust p { margin: 0; color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.trust__logos { display: grid; grid-template-columns: repeat(5, minmax(80px, 1fr)); align-items: center; gap: 42px; }
.trust__logos img { width: 100%; height: 50px; object-fit: contain; filter: grayscale(1); opacity: .62; transition: filter 180ms ease, opacity 180ms ease; }
.trust__logos img:hover { filter: none; opacity: 1; }

.section { max-width: var(--content); margin: 0 auto; padding: 112px 24px; }
.section-heading--split { display: grid; grid-template-columns: minmax(0, .98fr) minmax(360px, .72fr); gap: 100px; align-items: end; }
.section-heading h2 { max-width: 760px; }
.section-heading__copy { color: var(--ink-soft); font-size: 1.02rem; }
.section-heading__copy p { margin-bottom: 0; }
.section-heading__copy p + p { margin-top: 17px; }

.value-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 62px; }
.value-card { position: relative; min-height: 330px; padding: 30px; overflow: hidden; background: var(--soft); border: 1px solid var(--line); border-radius: 8px; transition: transform 200ms ease, box-shadow 200ms ease; }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.value-card__number { position: absolute; top: 26px; right: 28px; color: #9aa7a0; font-size: .72rem; font-weight: 800; }
.value-card__icon { display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 58px; background: #dceee2; border-radius: 50%; }
.value-card__icon svg { width: 25px; fill: none; stroke: var(--green); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.value-card__icon--teal { background: #dceeee; }
.value-card__icon--teal svg { stroke: var(--teal); }
.value-card__icon--amber { background: #f4e8d3; }
.value-card__icon--amber svg { stroke: var(--amber); }
.value-card h3 { max-width: 260px; }
.value-card p { margin: 16px 0 0; color: var(--ink-soft); font-size: .9rem; }

.about { padding-bottom: 84px; }
.impact { display: grid; grid-template-columns: minmax(340px, .76fr) minmax(0, 1.24fr); min-height: 640px; width: calc(100% - 48px); max-width: 1320px; margin: 0 auto; overflow: hidden; background: var(--green-deep); border-radius: 10px; color: #fff; }
.impact__media { position: relative; min-height: 640px; overflow: hidden; }
.impact__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 36%; }
.impact__media-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,31,22,.02) 40%, rgba(5,31,22,.82) 100%); }
.impact__media > p { position: absolute; right: 30px; bottom: 27px; left: 30px; margin: 0; color: rgba(255,255,255,.82); font-size: .75rem; font-weight: 700; }
.impact__content { display: flex; flex-direction: column; justify-content: center; padding: 72px 68px; }
.impact__content h2 { max-width: 740px; }
.impact__intro { max-width: 680px; margin: 24px 0 0; color: #c9dacf; font-size: 1rem; }
.impact__flow { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 62px; border-top: 1px solid var(--line-dark); }
.impact__flow article { min-height: 180px; padding: 27px 24px 0 0; border-right: 1px solid var(--line-dark); }
.impact__flow article + article { padding-left: 24px; }
.impact__flow article:last-child { border-right: 0; }
.impact__flow span { display: block; margin-bottom: 23px; color: #8fcba3; font-size: .68rem; font-weight: 800; }
.impact__flow h3 { font-size: 1.08rem; letter-spacing: -.02em; }
.impact__flow p { margin: 10px 0 0; color: #b7ccc0; font-size: .81rem; }

.solutions { max-width: 1320px; }
.solution-list { display: grid; gap: 24px; margin-top: 65px; }
.solution-card--sgiap { margin-bottom: -12px; }
.solution-card { display: grid; grid-template-columns: minmax(360px, .76fr) minmax(500px, 1.24fr); gap: 50px; min-height: 640px; padding: 52px 52px 0; overflow: hidden; border: 1px solid var(--line); border-radius: 9px; }
.solution-card--sgiap { background: #e6f1ec; border-radius: 9px 9px 4px 4px; }
.solution-card--prodmudas { background: #e8f0ef; }
.solution-card__copy { align-self: center; padding-bottom: 52px; }
.solution-card__brand { display: flex; align-items: center; width: 112px; height: 68px; margin-bottom: 18px; }
.solution-card__brand img { width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.solution-card__brand--app { width: auto; gap: 11px; }
.solution-card__brand--app img { width: 48px; height: 48px; border-radius: 9px; box-shadow: 0 8px 20px rgba(13,65,41,.13); }
.solution-card__brand--app strong { font-size: 1rem; }
.solution-card__label { margin-bottom: 15px; color: var(--green); font-size: .67rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.solution-card h3 { max-width: 480px; font-size: clamp(2rem, 3vw, 3.1rem); }
.solution-card__copy > p:not(.solution-card__label) { max-width: 500px; margin: 20px 0 0; color: var(--ink-soft); font-size: .92rem; }
.solution-card ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 25px 0 0; padding: 0; list-style: none; }
.solution-card li { padding: 7px 10px; background: rgba(255,255,255,.62); border: 1px solid rgba(18,63,45,.11); border-radius: 5px; color: var(--ink-soft); font-size: .67rem; font-weight: 700; }
.solution-card__link { display: inline-flex; align-items: center; gap: 9px; margin-top: 29px; color: var(--green-dark); font-size: .8rem; font-weight: 800; text-decoration: none; }

.sgiapp-ui { align-self: end; height: 555px; overflow: hidden; background: #fff; border: 1px solid rgba(13,65,41,.13); border-bottom: 0; border-radius: 10px 10px 0 0; box-shadow: 0 25px 70px rgba(13,65,41,.17); transform: rotate(-1deg) translateY(8px); transform-origin: bottom center; }
.sgiapp-ui__top { display: flex; align-items: center; gap: 6px; height: 48px; padding: 0 17px; border-bottom: 1px solid #e1e8e4; }
.sgiapp-ui__top i { width: 7px; height: 7px; background: #c9d5ce; border-radius: 50%; }
.sgiapp-ui__top span { width: 38%; height: 7px; margin-left: 18px; background: #edf2ef; border-radius: 4px; }
.sgiapp-ui__body { display: grid; grid-template-columns: 68px 1fr; height: calc(100% - 48px); }
.sgiapp-ui__body aside { padding: 20px; background: #113f2d; }
.sgiapp-ui__body aside b, .sgiapp-ui__body aside i { display: block; width: 26px; height: 26px; margin-bottom: 21px; border: 1px solid rgba(255,255,255,.25); border-radius: 6px; }
.sgiapp-ui__body aside b { background: #fff; }
.sgiapp-ui__map { position: relative; overflow: hidden; background: #d7e1d8; }
.sgiapp-ui__map::before { position: absolute; inset: 0; opacity: .32; background-image: linear-gradient(rgba(73,105,85,.24) 1px, transparent 1px), linear-gradient(90deg, rgba(73,105,85,.24) 1px, transparent 1px); background-size: 44px 44px; content: ""; }
.map-shape { position: absolute; background: #96b49a; border: 2px solid rgba(255,255,255,.75); opacity: .85; }
.map-shape--one { inset: 15% 14% 24% 12%; border-radius: 42% 58% 35% 65% / 52% 33% 67% 48%; transform: rotate(14deg); }
.map-shape--two { right: -10%; bottom: -10%; width: 58%; height: 57%; background: #adc4a9; border-radius: 50%; }
.map-route { position: absolute; top: 8%; left: 50%; width: 3px; height: 90%; background: rgba(255,255,255,.92); box-shadow: 0 0 0 1px rgba(43,105,72,.15); transform: rotate(31deg); }
.map-pin { position: absolute; width: 16px; height: 16px; background: var(--green); border: 4px solid #fff; border-radius: 50%; box-shadow: 0 3px 12px rgba(8,45,32,.28); }
.map-pin--one { top: 28%; left: 29%; }
.map-pin--two { top: 51%; left: 67%; }
.map-pin--three { top: 71%; left: 40%; }
.map-card { position: absolute; top: 24%; right: 7%; width: 160px; padding: 15px; background: rgba(255,255,255,.94); border-radius: 7px; box-shadow: 0 10px 25px rgba(8,45,32,.15); }
.map-card small, .map-card strong { display: block; }
.map-card small { color: var(--muted); font-size: .55rem; }
.map-card strong { margin-top: 3px; font-size: .68rem; }
.map-card i { display: block; width: 72%; height: 5px; margin-top: 12px; background: #cde5d4; border-radius: 3px; }
.solution-card__product-image { align-self: end; min-width: 0; padding-top: 40px; }
.solution-card__product-image img { width: 100%; filter: drop-shadow(0 28px 34px rgba(13,65,41,.14)); transform: translateY(13px) scale(1.05); }

.sgiapp-evidence { padding: 32px 42px 34px; background: var(--green-deep); border-radius: 4px 4px 9px 9px; color: #fff; }
.sgiapp-evidence__heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; padding-bottom: 22px; border-bottom: 1px solid var(--line-dark); }
.sgiapp-evidence__heading > div > p { margin-bottom: 7px; color: #9fc8ad; font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.sgiapp-evidence__heading h3 { font-size: 1.35rem; letter-spacing: -.025em; }
.sgiapp-evidence__summary { flex: 0 0 auto; margin: 0; color: #bfd1c6; font-size: .72rem; }
.sgiapp-evidence__summary strong { color: var(--mint-bright); font-size: 1rem; }
.sgiapp-evidence__summary span { margin: 0 7px; color: #739985; }
.sgiapp-evidence__area-groups { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 36px; padding-top: 22px; }
.sgiapp-evidence__area-groups > div > strong { display: block; margin-bottom: 10px; color: #fff; font-size: .78rem; }
.sgiapp-evidence__area-groups > div > ul + strong { margin-top: 22px; }
.sgiapp-evidence__areas ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.sgiapp-evidence__areas li { position: relative; padding-left: 15px; color: #d3e1d8; font-size: .74rem; }
.sgiapp-evidence__areas li::before { position: absolute; top: .72em; left: 0; width: 5px; height: 5px; background: var(--mint-bright); border-radius: 50%; content: ""; }

.approach { display: grid; grid-template-columns: minmax(350px, .8fr) minmax(500px, 1.2fr); gap: 100px; }
.approach__intro { position: sticky; top: 120px; align-self: start; }
.approach__intro h2 { font-size: clamp(2.6rem, 4vw, 4.2rem); }
.approach__intro > p:last-child { margin: 24px 0 0; color: var(--ink-soft); }
.approach__steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.approach__steps li { display: grid; grid-template-columns: 70px 1fr; gap: 25px; min-height: 180px; padding: 31px 0; border-bottom: 1px solid var(--line); }
.approach__steps li > span { color: var(--amber); font-size: .7rem; font-weight: 800; }
.approach__steps h3 { font-size: 1.3rem; }
.approach__steps p { max-width: 540px; margin: 13px 0 0; color: var(--ink-soft); font-size: .9rem; }

.contact { position: relative; min-height: 680px; overflow: hidden; background: var(--green-deep); color: #fff; }
.contact__backdrop { position: absolute; inset: 0 0 0 54%; }
.contact__backdrop::after { position: absolute; inset: 0; background: linear-gradient(90deg, var(--green-deep), rgba(8,45,32,.38)); content: ""; }
.contact__backdrop img { width: 100%; height: 100%; object-fit: cover; }
.contact__content { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; min-height: 680px; max-width: var(--content); margin: 0 auto; padding: 90px 24px; }
.contact h2 { max-width: 850px; font-size: clamp(3rem, 5.3vw, 5.7rem); }
.contact__content > p:not(.eyebrow) { max-width: 650px; margin: 27px 0 0; color: #c9dacf; font-size: 1rem; }
.contact__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 28px; margin-top: 35px; }
.contact__email { display: inline-flex; align-items: center; gap: 10px; color: #d8e7dd; font-size: .86rem; font-weight: 700; text-decoration: none; }

.footer { max-width: var(--content); margin: 0 auto; padding: 62px 24px 28px; }
.footer__main { display: grid; grid-template-columns: 220px 1fr auto; gap: 55px; align-items: center; padding-bottom: 50px; }
.brand--footer { width: 190px; height: 80px; }
.footer__main > p { max-width: 330px; margin: 0; color: var(--ink-soft); font-size: .88rem; }
.footer__main nav { display: flex; gap: 26px; font-size: .78rem; font-weight: 700; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--green); }
.footer__bottom { display: flex; justify-content: space-between; gap: 25px; padding-top: 25px; border-top: 1px solid var(--line); color: var(--muted); font-size: .68rem; }
.footer__bottom div { display: flex; gap: 22px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal--delay { transition-delay: 120ms; }
.reveal--delay-2 { transition-delay: 220ms; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .topbar { grid-template-columns: 165px 1fr auto; }
  .nav { gap: 20px; }
  .hero { grid-template-columns: minmax(380px, .9fr) minmax(450px, 1.1fr); gap: 36px; }
  .hero__visual { min-height: 580px; }
  .impact__content { padding: 64px 46px; }
  .solution-card { grid-template-columns: minmax(330px, .85fr) minmax(420px, 1.15fr); padding-right: 35px; padding-left: 35px; }
  .approach { gap: 65px; }
}

@media (max-width: 860px) {
  section[id] { scroll-margin-top: 68px; }

  .topbar { grid-template-columns: 1fr auto; min-height: 68px; }
  .brand { width: 150px; height: 48px; }
  .menu-toggle { display: block; grid-column: 2; grid-row: 1; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .nav { position: fixed; top: 68px; right: 0; left: 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 18px 24px 28px; background: rgba(255,255,255,.98); border-bottom: 1px solid var(--line); box-shadow: 0 20px 40px rgba(8,45,32,.08); transform: translateY(-140%); transition: transform 220ms ease; }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .topbar__cta { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 112px; }
  .hero__copy { padding: 35px 0 10px; }
  .hero__visual { min-height: 620px; }
  .trust__inner { grid-template-columns: 1fr; gap: 25px; }
  .trust__logos { gap: 22px; }
  .section-heading--split { grid-template-columns: 1fr; gap: 28px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 250px; }
  .value-card__icon { margin-bottom: 38px; }
  .impact { grid-template-columns: 1fr; }
  .impact__media { min-height: 560px; max-height: 720px; }
  .impact__content { padding: 72px 32px; }
  .solution-card { grid-template-columns: 1fr; min-height: 0; }
  .solution-card__copy { padding-bottom: 0; }
  .sgiapp-ui { height: 480px; }
  .approach { grid-template-columns: 1fr; gap: 50px; }
  .approach__intro { position: static; }
  .footer__main { grid-template-columns: 1fr; gap: 20px; }
  .footer__main nav { margin-top: 10px; }
}

@media (max-width: 600px) {
  html, body { width: 100%; max-width: 100%; overflow-x: clip; }
  main, section, article, header, footer, nav, div { min-width: 0; }
  .hero, .trust__inner, .section, .contact__content, .footer { width: 100%; max-width: 100%; }
  h1, h2, h3, p, a { overflow-wrap: anywhere; }
  h1 { font-size: clamp(2.8rem, 13vw, 3.35rem); }
  .hero h1 { font-size: clamp(2.6rem, 12vw, 3.1rem); }
  h2 { font-size: clamp(2.35rem, 11vw, 3.2rem); }
  .topbar { padding-right: 18px; padding-left: 18px; }
  .hero { gap: 28px; padding: 104px 18px 40px; }
  .hero__copy { padding-top: 24px; }
  .hero__text { font-size: 1rem; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__actions .button { width: 100%; max-width: 100%; }
  .text-link { justify-content: center; min-height: 44px; }
  .hero__visual { min-height: 500px; }
  .hero__proofs { gap: 10px 18px; font-size: .72rem; }
  .hero__data-card { top: 18px; right: 18px; }
  .trust__inner { padding: 27px 18px; }
  .trust__logos { grid-template-columns: repeat(3, 1fr); gap: 20px 25px; }
  .trust__logos img { height: 42px; }
  .section { padding: 82px 18px; }
  .about { padding-bottom: 64px; }
  .value-grid { margin-top: 42px; }
  .value-card { padding: 25px; }
  .impact { width: calc(100% - 24px); border-radius: 8px; }
  .impact__media { min-height: 480px; }
  .impact__content { padding: 64px 22px; }
  .impact__flow { grid-template-columns: 1fr; }
  .impact__flow article { min-height: 0; padding: 25px 0; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .impact__flow article + article { padding-left: 0; }
  .solutions { padding-right: 12px; padding-left: 12px; }
  .solutions > .section-heading { padding-right: 6px; padding-left: 6px; }
  .solution-list { margin-top: 45px; }
  .solution-card { gap: 28px; padding: 30px 20px 0; }
  .solution-card h3 { font-size: 2rem; }
  .sgiapp-evidence { padding: 28px 22px 24px; }
  .sgiapp-evidence__heading { align-items: flex-start; flex-direction: column; gap: 14px; }
  .sgiapp-evidence__area-groups { grid-template-columns: 1fr; }
  .sgiapp-ui { height: 380px; }
  .sgiapp-ui__body { grid-template-columns: 48px 1fr; }
  .sgiapp-ui__body aside { padding: 12px; }
  .sgiapp-ui__body aside b, .sgiapp-ui__body aside i { width: 22px; height: 22px; }
  .map-card { width: 130px; }
  .solution-card__product-image { padding-top: 10px; }
  .approach__steps li { grid-template-columns: 43px 1fr; gap: 12px; }
  .contact__backdrop { inset: 0; opacity: .4; }
  .contact__backdrop::after { background: rgba(8,45,32,.82); }
  .contact__content { min-height: 660px; padding: 80px 18px; }
  .contact__actions { align-items: stretch; flex-direction: column; }
  .contact__email { max-width: 100%; font-size: .76rem; }
  .footer { padding-right: 18px; padding-left: 18px; }
  .footer__main nav { flex-wrap: wrap; }
  .footer__bottom, .footer__bottom div { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}