:root {
  --color-primary: #142445;
  --color-primary-dark: #0d1a34;
  --color-primary-light: #2a3856;
  --color-accent: #0d664e;
  --color-accent-dark: #09513f;
  --color-accent-soft: #eaf5f1;
  --color-heading: #142445;
  --color-text: #5e6269;
  --color-muted: #85888e;
  --color-background: #ffffff;
  --color-surface: #f4f6f9;
  --color-surface-2: #e9edf3;
  --color-border: #d9dde4;
  --color-white: #ffffff;
  --color-black: #071020;

  --font-heading: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;

  --container: 78rem;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-space: clamp(4.5rem, 8vw, 7rem);

  --radius-sm: 0.625rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.5rem;
  --radius-pill: 999px;

  --shadow-sm: 0 0.625rem 2rem rgba(13, 26, 52, 0.08);
  --shadow-md: 0 1.25rem 3.5rem rgba(13, 26, 52, 0.13);
  --shadow-lg: 0 1.75rem 4.5rem rgba(13, 26, 52, 0.2);

  --transition-fast: 180ms ease;
  --transition-normal: 280ms cubic-bezier(0.22, 1, 0.36, 1);
  --header-height: 4.5rem;
  --z-header: 100;
  --z-menu: 120;
}

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

html {
  width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
  overflow-x: hidden;
}

body {
  width: 100%;
  min-width: 20rem;
  margin: 0;
  overflow-x: hidden;
  color: var(--color-text);
  background: var(--color-background);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

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

img {
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

address {
  font-style: normal;
}

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

h1,
h2,
h3 {
  color: var(--color-heading);
  font-family: var(--font-heading);
  line-height: 1.1;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

ul {
  padding-left: 0;
}

::selection {
  color: var(--color-white);
  background: var(--color-accent);
}

:focus-visible {
  outline: 0.1875rem solid #0d664e;
  outline-offset: 0.25rem;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 999;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  transition: transform var(--transition-fast);
}

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

.container {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.section--dark {
  color: rgba(255, 255, 255, 0.78);
  background: var(--color-primary-dark);
}

.section--surface {
  background: var(--color-surface);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2rem;
  height: 0.15rem;
  content: "";
  flex: 0 0 auto;
  background: currentColor;
}

.eyebrow--light {
  color: var(--color-white);
}

.eyebrow--red {
  color: #0d664e;
}

.section-title {
  max-width: 21ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 7.6vw, 2.65rem);
  font-weight: 800;
}

.section-title--light {
  color: var(--color-white);
}

.section-title small {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.54em;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.lead {
  max-width: 48rem;
  color: #3e4652;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.lead--light {
  color: rgba(255, 255, 255, 0.84);
}

.prose {
  max-width: 44rem;
}

.prose p {
  margin-bottom: 1.15rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose strong {
  color: var(--color-heading);
}

.prose--light {
  color: rgba(255, 255, 255, 0.72);
}

.prose--light strong {
  color: var(--color-white);
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.8rem 1.2rem;
  border: 0.0625rem solid transparent;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition: color var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.button svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--transition-fast);
}

.button:hover {
  transform: translateY(-0.1rem);
}

.button:hover svg {
  transform: translateX(0.15rem);
}

.button--primary {
  color: var(--color-white);
  background: var(--color-accent);
  box-shadow: 0 0.7rem 1.8rem rgba(235, 0, 43, 0.22);
}

.button--primary:hover {
  background: var(--color-accent-dark);
  box-shadow: 0 0.9rem 2.2rem rgba(235, 0, 43, 0.27);
}

.button--ghost,
.button--outline-light {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
}

.button--ghost:hover,
.button--outline-light:hover {
  color: var(--color-primary);
  border-color: var(--color-white);
  background: var(--color-white);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: var(--z-header);
  height: var(--header-height);
  color: var(--color-white);
  background: rgba(13, 26, 52, 0.96);
  transition: background-color var(--transition-normal), box-shadow var(--transition-normal), color var(--transition-normal), backdrop-filter var(--transition-normal);
}

.site-header.is-scrolled {
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0.5rem 2rem rgba(13, 26, 52, 0.08);
  backdrop-filter: blur(0.65rem);
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.brand {
  position: relative;
  z-index: 2;
  display: block;
  width: min(48vw, 12.25rem);
  min-width: 0;
  flex: 0 1 auto;
}

.brand__logo {
  width: 100%;
}

.brand__logo--dark {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.site-header.is-scrolled .brand__logo--light {
  opacity: 0;
}

.site-header.is-scrolled .brand__logo--dark {
  opacity: 1;
}

.desktop-nav,
.button--header {
  display: none;
}

.menu-toggle {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  place-content: center;
  gap: 0.28rem;
  color: inherit;
  background: transparent;
  border: 0.0625rem solid currentColor;
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  width: 1.05rem;
  height: 0.1rem;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  z-index: var(--z-menu);
  inset: 0;
  width: 100vw;
  height: 100dvh;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 0s linear var(--transition-normal), opacity var(--transition-normal);
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.mobile-menu__backdrop {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 16, 32, 0.72);
  cursor: pointer;
}

.mobile-menu__panel {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 25rem);
  max-width: 100vw;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 1rem 1.25rem 2rem;
  color: var(--color-text);
  background: var(--color-white);
  box-shadow: -1rem 0 3rem rgba(7, 16, 32, 0.18);
  transform: translateX(100%);
  transition: transform var(--transition-normal);
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.1rem;
  border-bottom: 0.0625rem solid var(--color-border);
}

.mobile-menu__head img {
  width: min(62vw, 12.5rem);
}

.menu-close {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  place-items: center;
  color: var(--color-primary);
  background: var(--color-surface);
  border-radius: 50%;
  cursor: pointer;
}

.menu-close svg {
  width: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.mobile-nav {
  display: grid;
  margin-top: 1.15rem;
}

.mobile-nav a {
  display: flex;
  min-height: 3.65rem;
  align-items: center;
  gap: 0.85rem;
  padding-block: 0.8rem;
  color: var(--color-primary);
  border-bottom: 0.0625rem solid var(--color-border);
  font-size: clamp(1.15rem, 5vw, 1.45rem);
  font-weight: 750;
  line-height: 1.2;
}

.mobile-nav a span {
  min-width: 1.5rem;
  color: var(--color-accent);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
}

.mobile-menu__contact {
  display: grid;
  gap: 0.4rem;
  margin-top: 1.5rem;
  overflow-wrap: anywhere;
  color: var(--color-text);
  font-size: 0.875rem;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: 43rem;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-primary-dark);
}

.hero__media,
.hero__media img,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  z-index: -3;
}

.hero__media img {
  object-fit: cover;
  object-position: 58% center;
}

.hero__overlay {
  z-index: -2;
  background: linear-gradient(90deg, rgba(6, 15, 32, 0.95) 0%, rgba(13, 26, 52, 0.8) 58%, rgba(13, 26, 52, 0.36) 100%);
}

.hero__shape {
  display: none !important;
}

.hero__content {
  display: grid;
  gap: 2rem;
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 3.75rem;
}

.hero__copy {
  max-width: 43rem;
}

.hero__title {
  max-width: 14ch;
  margin-bottom: 1.25rem;
  color: var(--color-white);
  font-size: clamp(2rem, 9vw, 2.35rem);
  font-weight: 850;
  letter-spacing: -0.045em;
}

.hero__lead {
  max-width: 39rem;
  margin-bottom: 1.7rem;
  color: rgba(255, 255, 255, 0.79);
  font-size: clamp(1rem, 3.8vw, 1.15rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.2);
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.2);
}

.hero-fact {
  min-width: 0;
  padding: 0.85rem 0.55rem;
}

.hero-fact + .hero-fact {
  border-left: 0.0625rem solid rgba(255, 255, 255, 0.2);
}

.hero-fact strong,
.hero-fact span {
  display: block;
}

.hero-fact strong {
  color: var(--color-white);
  font-size: clamp(0.9rem, 3.8vw, 1.2rem);
  line-height: 1.2;
}

.hero-fact span {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(0.6rem, 2.4vw, 0.72rem);
  line-height: 1.35;
}

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 1.5rem;
  display: none;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__scroll i {
  width: 2.5rem;
  height: 0.0625rem;
  background: rgba(255, 255, 255, 0.48);
}

/* Problem */
.problem::before {
  display: none;
}

.problem__grid {
  display: grid;
  gap: 2.75rem;
}

.problem__visual {
  position: relative;
  min-height: 20rem;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-primary-light);
}

.problem__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 40%, rgba(7, 16, 32, 0.9));
}

.problem__visual img {
  width: 100%;
  height: 100%;
  min-height: 20rem;
  object-fit: cover;
}

.problem__visual figcaption {
  position: absolute;
  z-index: 2;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
}

.problem__visual figcaption span,
.problem__visual figcaption strong {
  display: block;
}

.problem__visual figcaption span {
  margin-bottom: 0.35rem;
  color: #0d664e;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.problem__visual figcaption strong {
  max-width: 21rem;
  color: var(--color-white);
  font-size: clamp(1.2rem, 4vw, 1.6rem);
  line-height: 1.25;
}

.problem .section-title {
  max-width: 18ch;
}

.risk-list {
  display: grid;
  margin: 2rem 0;
  list-style: none;
}

.risk-list li {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  gap: 0.7rem;
  padding-block: 0.9rem;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.13);
}

.risk-list li:last-child {
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.13);
}

.risk-list span {
  color: #0d664e;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.risk-list strong {
  color: var(--color-white);
  font-size: 1rem;
  line-height: 1.45;
}

/* Introduction */
.intro::after,
.intro__line {
  display: none !important;
}

.intro__grid {
  display: grid;
  gap: 3rem;
}

.intro .section-title {
  max-width: 20ch;
}

.intro__prose .lead {
  margin-bottom: 1rem;
  color: var(--color-heading);
  font-weight: 700;
}

.intro__visual-wrap {
  position: relative;
  align-self: center;
  padding-bottom: 2rem;
}

.intro__visual {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-surface-2);
  box-shadow: var(--shadow-md);
}

.intro__visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.intro__badge {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 0;
  width: min(82%, 19rem);
  padding: 1.1rem 1.2rem;
  color: var(--color-white);
  background: var(--color-primary);
  border-left: 0.25rem solid var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.intro__badge span,
.intro__badge strong {
  display: block;
}

.intro__badge span {
  margin-bottom: 0.2rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.intro__badge strong {
  font-size: 1.05rem;
}

/* Generator selection */
.selection {
  min-height: 44rem;
  isolation: isolate;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-primary-dark);
}

.selection__media,
.selection__media img,
.selection__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.selection__media {
  z-index: -3;
}

.selection__media img {
  object-fit: cover;
  object-position: 44% center;
}

.selection__overlay {
  z-index: -2;
  background: linear-gradient(90deg, rgba(7, 16, 32, 0.94) 0%, rgba(13, 26, 52, 0.75) 56%, rgba(13, 26, 52, 0.48) 100%);
}

.selection::before {
  display: none;
}

.selection__inner {
  display: grid;
  gap: 2rem;
}

.selection .section-title {
  max-width: 14ch;
}

.selection-panel {
  max-width: 42rem;
  padding: clamp(1.4rem, 5vw, 2.5rem);
  color: var(--color-white);
  background: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.selection-panel > p {
  margin-bottom: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.6;
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 1.85rem minmax(0, 1fr);
  align-items: start;
  gap: 0.75rem;
}

.check-list__icon {
  display: grid;
  width: 1.85rem;
  height: 1.85rem;
  place-items: center;
  border: 0.1rem solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
}

.check-list__icon svg {
  width: 0.95rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.check-list strong {
  padding-top: 0.1rem;
  font-size: 0.98rem;
  line-height: 1.45;
}

.selection__statement {
  max-width: 53rem;
  margin: 0;
  padding-left: 1rem;
  border-left: 0.22rem solid var(--color-accent);
  color: var(--color-white);
  font-size: clamp(1.1rem, 2.3vw, 1.5rem);
  font-weight: 720;
  line-height: 1.45;
}

/* Solutions */
.solutions {
  padding-top: 0;
}

.solutions__masthead {
  position: relative;
  min-height: 23rem;
  overflow: hidden;
  background: var(--color-primary);
}

.solutions__masthead img,
.solutions__masthead-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.solutions__masthead img {
  object-fit: cover;
  object-position: center;
}

.solutions__masthead-overlay {
  background: linear-gradient(90deg, rgba(13, 26, 52, 0.94), rgba(13, 26, 52, 0.52));
}

.solutions__masthead::after {
  display: none;
}

.solutions__masthead-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 23rem;
  flex-direction: column;
  justify-content: center;
  padding-block: 4rem;
}

.solutions__masthead-content .section-title {
  max-width: 20ch;
  margin-bottom: 0;
}

.solutions__body {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.solutions__intro {
  margin-bottom: 2.5rem;
}

.solution-grid {
  display: grid;
  gap: 1rem;
}

.solution-card {
  position: relative;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--color-text);
  background: var(--color-surface);
  border: 0.0625rem solid transparent;
  border-radius: var(--radius-lg);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.solution-card:hover {
  border-color: rgba(235, 0, 43, 0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-0.25rem);
}

.solution-card__number {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  color: rgba(20, 36, 69, 0.15);
  font-size: 2rem;
  font-weight: 850;
  line-height: 1;
}

.icon-box {
  display: grid;
  width: 3.75rem;
  height: 3.75rem;
  margin-bottom: 1.75rem;
  place-items: center;
  color: var(--color-accent);
  background: var(--color-accent-soft);
  border-radius: var(--radius-md);
}

.icon-box svg {
  width: 2.2rem;
  height: 2.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-card h3 {
  max-width: 20ch;
  margin-bottom: 0.9rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
}

.solution-card h3 span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.65em;
}

.solution-card p,
.solution-card li {
  font-size: 0.96rem;
  line-height: 1.68;
}

.solution-card p:last-child {
  margin-bottom: 0;
}

.solution-card ul {
  display: grid;
  gap: 0.3rem;
  margin: 0;
  padding-left: 1rem;
}

.solution-card__line {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0.25rem;
  background: var(--color-accent);
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.solution-card:hover .solution-card__line {
  transform: scaleX(1);
}

.solution-card--dark {
  color: rgba(255, 255, 255, 0.76);
  background: var(--color-primary);
}

.solution-card--dark h3,
.solution-card--accent h3,
.solution-card--image h3 {
  color: var(--color-white);
}

.solution-card--dark .solution-card__number,
.solution-card--accent .solution-card__number {
  color: rgba(255, 255, 255, 0.14);
}

.solution-card--dark .icon-box,
.solution-card--accent .icon-box {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.11);
}

.solution-card--accent {
  color: rgba(255, 255, 255, 0.85);
  background: var(--color-accent);
}

.solution-card--accent .solution-card__line {
  background: var(--color-white);
}

.solution-card--image {
  min-height: 23rem;
  isolation: isolate;
  color: rgba(255, 255, 255, 0.84);
  background: var(--color-primary-dark);
}

.solution-card--image > img,
.solution-card__image-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.solution-card--image > img {
  object-fit: cover;
}

.solution-card__image-overlay {
  z-index: -1;
  background: linear-gradient(180deg, rgba(13, 26, 52, 0.12), rgba(13, 26, 52, 0.95));
}

.solution-card__image-content {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
}

.solution-card--image .solution-card__number {
  color: rgba(255, 255, 255, 0.36);
}

.solution-card--image .icon-box {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.12);
}

/* Process */
.process {
  overflow: hidden;
}

.process__grid {
  display: grid;
  gap: 3rem;
}

.process__intro .lead {
  max-width: 31rem;
}

.process__image {
  position: relative;
  margin: 2rem 0 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-surface-2);
  box-shadow: var(--shadow-sm);
}

.process__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 52%, rgba(13, 26, 52, 0.82));
}

.process__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.process__image figcaption {
  position: absolute;
  z-index: 2;
  right: 1.15rem;
  bottom: 0.9rem;
  color: var(--color-white);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline__track {
  position: absolute;
  top: 1.1rem;
  bottom: 1.1rem;
  left: 1rem;
  width: 0.125rem;
  overflow: hidden;
  background: var(--color-border);
}

.timeline__track span {
  display: block;
  width: 100%;
  height: 0;
  background: var(--color-accent);
  transition: height 80ms linear;
}

.timeline-step {
  position: relative;
  min-height: 8.75rem;
  padding: 0 0 2.5rem 0.35rem;
}

.timeline-step:last-child {
  min-height: auto;
  padding-bottom: 0;
}

.timeline-step__node {
  position: absolute;
  top: 0;
  left: -3rem;
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  color: var(--color-primary);
  background: var(--color-white);
  border: 0.125rem solid var(--color-border);
  border-radius: 50%;
  box-shadow: 0 0 0 0.35rem var(--color-surface);
  transition: color var(--transition-fast), border-color var(--transition-fast), background-color var(--transition-fast), transform var(--transition-fast);
}

.timeline-step__node span {
  font-size: 0.62rem;
  font-weight: 800;
}

.timeline-step.is-active .timeline-step__node {
  color: var(--color-white);
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: scale(1.06);
}

.timeline-step__label {
  margin-bottom: 0.35rem;
  color: var(--color-accent);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.timeline-step h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 780;
}

.timeline-step p:last-child {
  max-width: 32rem;
  margin-bottom: 0;
}

/* Commitment */
.commitment__header {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 2.75rem;
}

.commitment__header .lead {
  align-self: end;
}

.commitment__layout {
  display: grid;
  gap: 1rem;
}

.commitment__image {
  position: relative;
  min-height: 24rem;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-surface-2);
}

.commitment__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(13, 26, 52, 0.04), rgba(13, 26, 52, 0.82));
}

.commitment__image img {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
}

.commitment__image figcaption {
  position: absolute;
  z-index: 2;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  color: var(--color-white);
}

.commitment__image figcaption span,
.commitment__image figcaption strong {
  display: block;
}

.commitment__image figcaption span {
  font-size: 0.95rem;
}

.commitment__image figcaption strong {
  font-size: clamp(1.35rem, 4vw, 1.8rem);
}

.assurance-grid {
  display: grid;
  gap: 1rem;
}

.assurance-card {
  min-width: 0;
  padding: 1.5rem;
  background: var(--color-surface);
  border: 0.0625rem solid transparent;
  border-radius: var(--radius-lg);
  transition: border-color var(--transition-fast), transform var(--transition-normal);
}

.assurance-card:hover {
  border-color: rgba(235, 0, 43, 0.24);
  transform: translateY(-0.2rem);
}

.assurance-card__icon {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1.25rem;
  place-items: center;
  color: var(--color-accent);
  background: var(--color-accent-soft);
  border-radius: var(--radius-md);
}

.assurance-card__icon svg {
  width: 1.9rem;
  height: 1.9rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.assurance-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.25rem;
  font-weight: 780;
}

.assurance-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.assurance-card--accent {
  color: rgba(255, 255, 255, 0.85);
  background: var(--color-accent);
}

.assurance-card--accent h3 {
  color: var(--color-white);
}

.assurance-card--accent .assurance-card__icon {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.13);
}

/* Industries */
.industries {
  isolation: isolate;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-primary-dark);
}

.industries__media,
.industries__overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.industries__media {
  object-fit: cover;
}

.industries__overlay {
  z-index: -1;
  background: rgba(13, 26, 52, 0.91);
}

.industries__accent {
  display: none !important;
}

.industries__content .section-title {
  margin-bottom: 3rem;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.industry-item {
  display: flex;
  min-width: 0;
  min-height: 8.5rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 0.45rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 0.0625rem solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-normal);
}

.industry-item:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-0.2rem);
}

.industry-item svg {
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 0.65rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-item h3 {
  margin: 0;
  color: var(--color-white);
  font-size: clamp(0.78rem, 3.4vw, 0.95rem);
  font-weight: 650;
  letter-spacing: -0.015em;
}

/* Closing */
.closing {
  overflow: hidden;
}

.closing__grid {
  display: grid;
  gap: 2.75rem;
}

.closing__image {
  position: relative;
  min-height: 25rem;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-surface-2);
}

.closing__image img {
  width: 100%;
  height: 100%;
  min-height: 25rem;
  object-fit: cover;
}

.closing__image span {
  display: none !important;
}

.closing__content {
  align-self: center;
}

.closing__content .section-title {
  max-width: 18ch;
}

.closing__content blockquote {
  margin: 1.75rem 0 0;
  padding: 1.25rem 0 1.25rem 1.25rem;
  border-left: 0.25rem solid var(--color-accent);
}

.closing__content blockquote strong,
.closing__content blockquote span {
  display: block;
  color: var(--color-heading);
  font-size: clamp(1.35rem, 4vw, 1.9rem);
  font-weight: 800;
  line-height: 1.2;
}

.closing__content blockquote span {
  color: var(--color-accent);
}

/* Contact */
.contact {
  padding-top: 0;
}

.contact__card {
  position: relative;
  display: grid;
  gap: 2rem;
  overflow: hidden;
  padding: clamp(1.5rem, 6vw, 3.5rem);
  color: rgba(255, 255, 255, 0.77);
  background: var(--color-primary);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.contact__card::before,
.contact__card::after {
  display: none;
}

.contact__content,
.contact-list {
  min-width: 0;
}

.contact__content .section-title {
  max-width: 14ch;
}

.contact__content > p:last-of-type {
  max-width: 31rem;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.75rem;
}

.contact-list {
  display: grid;
  gap: 0.7rem;
}

.contact-item {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  min-width: 0;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.07);
  border: 0.0625rem solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.32);
}

.contact-item__icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  color: var(--color-white);
  background: var(--color-accent);
  border-radius: 50%;
}

.contact-item__icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item small,
.contact-item strong {
  display: block;
}

.contact-item small {
  margin-bottom: 0.15rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-item strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--color-white);
  font-size: 0.86rem;
  line-height: 1.5;
}

/* Footer */
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  background: var(--color-primary-dark);
}

.site-footer__media,
.site-footer__overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.site-footer__media {
  object-fit: cover;
  object-position: center 48%;
}

.site-footer__overlay {
  z-index: -1;
  background: rgba(7, 16, 32, 0.92);
}

.site-footer__content {
  padding-block: 4rem 1.35rem;
}

.site-footer__top {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.site-footer__brand img {
  width: min(100%, 18rem);
  margin-bottom: 1rem;
}

.site-footer__brand p {
  max-width: 30rem;
  margin-bottom: 0;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1.25rem;
}

.footer-nav a {
  color: var(--color-white);
  font-size: 0.88rem;
  font-weight: 650;
  transition: color var(--transition-fast);
}

.footer-nav a:hover {
  color: #0d664e;
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.35rem;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.15);
  font-size: 0.76rem;
}

.site-footer__bottom p {
  margin-bottom: 0;
}

.site-footer__bottom a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--color-white);
  font-weight: 700;
}

.site-footer__bottom svg {
  width: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 0.85rem;
  bottom: 0.85rem;
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  color: var(--color-white);
  background: #1faf5b;
  border: 0.18rem solid var(--color-white);
  border-radius: 50%;
  box-shadow: 0 0.7rem 1.8rem rgba(7, 16, 32, 0.24);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.floating-whatsapp:hover {
  transform: translateY(-0.15rem) scale(1.02);
  box-shadow: 0 0.9rem 2.2rem rgba(7, 16, 32, 0.3);
}

.floating-whatsapp svg {
  width: 1.65rem;
  height: 1.65rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Content must never depend on animation to become visible. */
.reveal-heading > span {
  display: block;
}

.reveal-image {
  clip-path: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Small tablets */
@media (min-width: 40rem) {
  :root {
    --header-height: 5rem;
  }

  .section-title {
    font-size: clamp(2.3rem, 5vw, 3rem);
  }

  .hero {
    min-height: 46rem;
  }

  .hero__title {
    font-size: clamp(2.7rem, 6.8vw, 3.75rem);
  }

  .hero__facts {
    max-width: 43rem;
  }

  .hero-fact {
    padding: 1rem 1.1rem;
  }

  .problem__visual,
  .problem__visual img {
    min-height: 28rem;
  }

  .solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .assurance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .industry-item {
    min-height: 9.5rem;
  }

  .contact-item {
    grid-template-columns: 3rem minmax(0, 1fr);
    padding: 1rem;
  }

  .contact-item strong {
    font-size: 0.96rem;
  }

  .footer-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Tablets */
@media (min-width: 48rem) {
  .hero__media img {
    object-position: 61% center;
  }

  .hero__scroll {
    display: flex;
  }

  .problem__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: clamp(2.5rem, 6vw, 5rem);
  }

  .problem__visual {
    order: 2;
  }

  .intro__grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(18rem, 0.88fr);
    align-items: center;
    gap: clamp(3rem, 6vw, 5.5rem);
  }

  .selection__inner {
    grid-template-columns: minmax(0, 0.8fr) minmax(23rem, 1.2fr);
    align-items: start;
  }

  .selection__heading {
    padding-top: 1.5rem;
  }

  .selection-panel {
    justify-self: end;
  }

  .selection__statement {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
  }

  .commitment__header {
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
    gap: 2.5rem;
  }

  .closing__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: clamp(3rem, 6vw, 6rem);
  }

  .contact__card {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.9fr);
    align-items: center;
    gap: clamp(2.5rem, 5vw, 5rem);
  }

  .site-footer__top {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr);
    align-items: start;
  }
}

/* Desktop */
@media (min-width: 64rem) {
  :root {
    --header-height: 5.25rem;
  }

  .brand {
    width: clamp(13rem, 17vw, 15.5rem);
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 1.7vw, 1.7rem);
  }

  .desktop-nav a {
    position: relative;
    padding-block: 0.45rem;
    font-size: 0.8rem;
    font-weight: 650;
    white-space: nowrap;
  }

  .desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 0.12rem;
    content: "";
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-fast);
  }

  .desktop-nav a:hover::after,
  .desktop-nav a.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .button--header {
    display: inline-flex;
    min-height: 2.75rem;
    padding-inline: 1.05rem;
    color: var(--color-white);
    background: var(--color-accent);
  }

  .menu-toggle {
    display: none;
  }

  .section-title {
    font-size: clamp(2.65rem, 3.6vw, 3.4rem);
  }

  .hero {
    min-height: 47rem;
  }

  .hero__content {
    grid-template-columns: minmax(0, 1fr) 24rem;
    align-items: end;
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 4.5rem;
  }

  .hero__title {
    max-width: 13ch;
    font-size: clamp(3.5rem, 5vw, 4rem);
  }

  .hero__facts {
    align-self: end;
    grid-template-columns: 1fr;
    border: 0;
  }

  .hero-fact {
    padding: 1rem 1.15rem;
    background: rgba(7, 16, 32, 0.64);
    border-left: 0.18rem solid rgba(255, 255, 255, 0.2);
  }

  .hero-fact + .hero-fact {
    border-top: 0.0625rem solid rgba(255, 255, 255, 0.13);
    border-left: 0.18rem solid rgba(255, 255, 255, 0.2);
  }

  .hero-fact strong {
    font-size: 1.35rem;
  }

  .hero-fact span {
    font-size: 0.75rem;
  }

  .problem .section-title,
  .intro .section-title {
    font-size: clamp(2.65rem, 3.3vw, 3.25rem);
  }

  .solutions__masthead,
  .solutions__masthead-content {
    min-height: 27rem;
  }

  .solution-grid {
    gap: 1.25rem;
  }

  .process__grid {
    grid-template-columns: minmax(21rem, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(3.5rem, 7vw, 7rem);
  }

  .process__sticky {
    position: sticky;
    top: calc(var(--header-height) + 1.75rem);
  }

  .timeline-step {
    min-height: 9.5rem;
  }

  .commitment__layout {
    grid-template-columns: minmax(22rem, 0.85fr) minmax(0, 1.15fr);
    align-items: stretch;
  }

  .commitment__image,
  .commitment__image img {
    min-height: 100%;
  }

  .assurance-card {
    padding: 1.5rem;
  }

  .industry-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }

  .industry-item {
    min-height: 9.75rem;
  }

  .floating-whatsapp {
    right: 1.4rem;
    bottom: 1.4rem;
    width: 3.55rem;
    height: 3.55rem;
  }
}

@media (min-width: 80rem) {
  .hero__content {
    grid-template-columns: minmax(0, 1fr) 26rem;
  }

  .problem__visual,
  .problem__visual img {
    min-height: 34rem;
  }

  .intro__visual-wrap {
    padding-right: 1.5rem;
  }

  .selection-panel {
    margin-right: 2rem;
  }

  .commitment__layout {
    grid-template-columns: minmax(24rem, 0.82fr) minmax(0, 1.18fr);
    gap: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 22.4375rem) {
  .hero__actions .button,
  .contact__actions .button {
    width: 100%;
  }

  .contact__actions .button--primary {
    padding-inline: 0.85rem;
    font-size: 0.8rem;
  }
}

/* Targeted layout refinements — July 2026 */
/* Section 2 uses a light canvas; section 3 becomes the navy brand section. */
.problem {
  color: var(--color-text);
  background: var(--color-white);
}

.problem .section-title,
.problem .lead,
.problem .prose,
.problem .risk-list strong {
  color: var(--color-heading);
}

.problem .prose p {
  color: var(--color-text);
}

.problem .risk-list li {
  border-color: var(--color-border);
}

.problem .risk-list li:last-child {
  border-bottom-color: var(--color-border);
}

.problem .risk-list span {
  color: var(--color-accent);
}

.intro {
  color: rgba(255, 255, 255, 0.78);
  background: var(--color-primary);
}

.intro .eyebrow {
  color: #0d664e;
}

.intro .intro__prose p,
.intro .intro__prose .lead {
  color: rgba(255, 255, 255, 0.78);
}

.intro .intro__prose strong {
  color: var(--color-white);
}

.intro__badge {
  box-shadow: 0 1rem 2.5rem rgba(7, 16, 32, 0.25);
}

/* Plain heading area for Our Solutions. */
.solutions__masthead {
  min-height: auto;
  background: var(--color-white);
}

.solutions__masthead-content {
  min-height: auto;
  padding-top: clamp(4rem, 7vw, 6.25rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.solutions__masthead-content .section-title {
  color: var(--color-heading);
}

/* Contact card: image and brand overlay on every viewport. */
.contact__card {
  isolation: isolate;
  background: var(--color-primary-dark);
}

.contact__card::before,
.contact__card::after {
  position: absolute;
  display: block;
  inset: 0;
  content: "";
  pointer-events: none;
}

.contact__card::before {
  z-index: -2;
  background: url("../images/warehouse-team.webp") center 48% / cover no-repeat;
}

.contact__card::after {
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 16, 32, 0.94), rgba(20, 36, 69, 0.84));
}

.contact__content,
.contact-list {
  position: relative;
  z-index: 1;
}

/* Mobile hero buttons remain side by side. */
.hero__actions {
  flex-wrap: nowrap;
}

.hero__actions .button {
  min-width: 0;
  flex: 1 1 0;
  justify-content: center;
  padding-inline: 0.75rem;
  font-size: clamp(0.72rem, 3.25vw, 0.88rem);
  white-space: nowrap;
}

@media (max-width: 39.9375rem) {
  .hero__title {
    max-width: 18ch;
    font-size: clamp(1.85rem, 8.6vw, 2.3rem);
    line-height: 1.08;
  }

  .hero-title-break {
    display: none;
  }

  .hero__actions {
    gap: 0.5rem;
  }

  .hero__actions .button svg {
    width: 0.95rem;
  }

  .intro .section-title {
    font-size: clamp(2rem, 9vw, 2.55rem);
  }

  .contact__card::before {
    background-position: 60% center;
  }

  .contact__card::after {
    background: linear-gradient(180deg, rgba(7, 16, 32, 0.93), rgba(20, 36, 69, 0.86));
  }
}

@media (min-width: 64rem) {
  .hero__content {
    grid-template-columns: minmax(0, 1fr) 22rem;
    align-items: center;
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 3.5rem;
  }

  .hero__copy {
    max-width: 49rem;
  }

  .hero__title {
    max-width: 19ch;
    font-size: clamp(3rem, 4vw, 3.55rem);
    line-height: 1.06;
  }

  .hero__facts {
    align-self: center;
    transform: translateY(-0.5rem);
  }

  .intro .section-title {
    max-width: 23ch;
    font-size: clamp(2.45rem, 3vw, 3rem);
    line-height: 1.12;
  }

  .solutions__masthead,
  .solutions__masthead-content {
    min-height: auto;
  }
}

@media (max-width: 22.4375rem) {
  .hero__actions .button {
    width: auto;
    padding-inline: 0.55rem;
    font-size: 0.69rem;
  }
}

/* Homepage product preview */
.home-products{background:var(--color-surface)}
.home-products__head{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(280px,.85fr);gap:3rem;align-items:end;margin-bottom:2.4rem}
.home-products__head>p{margin:0;max-width:52ch}
.home-products__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.2rem}
.home-product-card{background:#fff;border:1px solid var(--color-border);border-radius:16px;overflow:hidden;box-shadow:0 14px 30px rgba(18,36,69,.07);transition:transform .25s,border-color .25s}
.home-product-card:hover{transform:translateY(-4px);border-color:rgba(235,0,43,.45)}
.home-product-card picture{display:block;aspect-ratio:16/8;background:#e8edf4}
.home-product-card img{width:100%;height:100%;object-fit:cover}
.home-product-card>div{padding:1.35rem}
.home-product-card span{display:inline-block;color:var(--color-accent);font-weight:800;font-size:.82rem;margin-bottom:.45rem}
.home-product-card h3{margin:0;color:var(--color-primary);font-size:1.45rem}
.home-product-card p{margin:.7rem 0 1.1rem;line-height:1.65}
.home-product-card a{display:inline-flex;align-items:center;gap:.45rem;color:var(--color-primary);font-weight:800}
.home-product-card a svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:2}
.home-products__cta{display:flex;justify-content:center;margin-top:2rem}
@media(max-width:900px){.home-products__head{grid-template-columns:1fr;gap:1rem}.home-products__grid{grid-template-columns:1fr 1fr}.home-product-card:last-child{grid-column:1/-1}}
@media(max-width:639px){.home-products__grid{grid-template-columns:1fr}.home-product-card:last-child{grid-column:auto}.home-products__cta .button{width:100%;justify-content:center}}


/* Client update: engine & component brands strip */
.partner-strip {
  position: relative;
  z-index: 3;
  margin-top: var(--header-height);
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}
.partner-strip__inner {
  min-height: 5.25rem;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 0;
}
.partner-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(.5rem, 1.5vw, 1rem);
  align-items: center;
}
.partner-logos__item {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: .25rem .65rem;
}
.partner-logos__item img {
  width: 100%;
  max-width: 9.25rem;
  max-height: 2.75rem;
  object-fit: contain;
}
@media (max-width: 767px) {
  .partner-strip__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: .7rem;
  }
  .partner-logos {
    display: flex;
    gap: .4rem;
    overflow-x: auto;
    padding-bottom: .2rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .partner-logos::-webkit-scrollbar { display: none; }
  .partner-logos__item {
    flex: 0 0 7.2rem;
    min-height: 2.6rem;
    padding-inline: .3rem;
  }
  .partner-logos__item img { max-height: 2.2rem; }
}

/* Uploaded official brand logos - preserve each brand's original artwork. */
.partner-logos__item img {
  width: auto;
  height: 2.85rem;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.partner-logos__item:nth-child(1) img { height: 3rem; } /* Cummins square mark */
.partner-logos__item:nth-child(4) img { height: 3rem; } /* SmartGen tagline remains legible */
@media (max-width: 767px) {
  .partner-logos__item img { width: auto; height: 2.15rem; max-width: 100%; }
  .partner-logos__item:nth-child(1) img,
  .partner-logos__item:nth-child(4) img { height: 2.3rem; }
}
