:root {
  --red: #e50909;
  --red-dark: #b90000;
  --ink: #111820;
  --muted: #5f6873;
  --line: #dfe4ea;
  --soft: #f5f7f9;
  --navy: #132231;
  --navy-2: #0c1824;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(17, 24, 32, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  line-height: 1.5;
}

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

img {
  display: block;
  width: 100%;
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(22px, 4vw, 56px);
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .42);
}

.brand-mark {
  display: inline-block;
  color: #05070a;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.brand-mark span {
  position: relative;
  color: #05070a;
}

.brand-mark span::before {
  content: "";
  position: absolute;
  inset: -10px 6px -5px 8px;
  transform: skew(-18deg);
  background: var(--red);
  z-index: -1;
}

.brand-logo {
  display: block;
  width: clamp(122px, 13vw, 166px);
  height: auto;
}

.footer-logo {
  width: 128px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 34px);
  align-items: center;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  padding: 30px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav .is-active {
  color: var(--red);
  border-bottom-color: var(--red);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 12px 28px rgba(229, 9, 9, .25);
}

.btn-outline {
  border-color: rgba(17, 24, 32, .65);
  background: rgba(255, 255, 255, .42);
}

.btn-light {
  color: var(--ink);
  background: var(--white);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .7);
}

.hero {
  min-height: 720px;
  padding: 180px clamp(24px, 5vw, 64px) 74px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(32px, 7vw, 110px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.72) 34%, rgba(255,255,255,.1) 70%),
    var(--hero-image) center / cover;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 strong {
  color: var(--red);
  font-style: normal;
}

.hero-copy p {
  max-width: 570px;
  color: #25303a;
  font-size: 18px;
}

.red-rule {
  width: 78px;
  height: 5px;
  margin: 24px 0;
  background: var(--red);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.feature-panel {
  padding: 22px 24px;
  color: var(--white);
  border-radius: 8px;
  background: rgba(12, 18, 24, .76);
  backdrop-filter: blur(12px);
}

.feature-panel article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .28);
}

.feature-panel article:last-child {
  border-bottom: 0;
}

.line-icon,
.service-icon {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: var(--red);
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 34px;
}

.feature-panel h3,
.feature-panel p {
  margin: 0;
}

.feature-panel p {
  margin-top: 6px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
}

.section {
  padding: 70px clamp(24px, 5vw, 64px);
}

.section-head {
  margin-bottom: 28px;
}

.split {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 540px);
  gap: 40px;
  align-items: center;
}

.row-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  min-height: 280px;
  padding: 30px 18px;
  text-align: center;
  border: 1px solid #e8edf2;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease;
}

.service-card:hover,
.wide-card:hover,
.project-card:hover,
.solution-card:hover,
.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 9, 9, .35);
}

.service-card .service-icon {
  margin: 0 auto 20px;
  border: 0;
  font-size: 52px;
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.15;
}

.service-card small {
  font-size: 16px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.services-hero {
  min-height: 610px;
  padding: 168px clamp(24px, 5vw, 64px) 86px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.82) 37%, rgba(255,255,255,.1) 72%),
    url('https://images.unsplash.com/photo-1624397640148-949b1732bb0a?auto=format&fit=crop&w=1800&q=85') center / cover;
}

.services-hero-copy {
  max-width: 720px;
}

.services-hero h1 {
  margin: 0;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1.06;
  font-weight: 950;
}

.services-hero h1 strong {
  color: var(--red);
  font-style: normal;
}

.services-hero p:not(.eyebrow) {
  max-width: 650px;
  color: #2a3540;
  font-size: 17px;
}

.services-work {
  background: linear-gradient(180deg, #fff, #f8fafb);
}

.services-work .section-head h2 {
  font-size: clamp(32px, 3.6vw, 48px);
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-detail-card {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38%;
  gap: 18px;
  padding: 22px;
  border: 1px solid #e2e8ee;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(17, 24, 32, .08);
  transition: transform .2s ease, border-color .2s ease;
}

.service-detail-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 9, 9, .34);
}

.service-detail-card img {
  height: 100%;
  min-height: 330px;
  border-radius: 8px;
  object-fit: cover;
}

.service-detail-copy {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.service-detail-icon {
  color: var(--red);
  font-size: 56px;
  line-height: 1;
}

.service-detail-card h3 {
  margin: 18px 0 0;
  font-size: 21px;
  line-height: 1.14;
}

.service-detail-card small {
  font-size: 19px;
}

.mini-rule {
  width: 22px;
  height: 3px;
  margin: 16px 0 18px;
  background: var(--red);
}

.service-detail-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.service-detail-card ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.service-detail-card li {
  position: relative;
  padding-left: 24px;
  color: #3e4853;
  font-size: 13px;
}

.service-detail-card li::before {
  content: "⊙";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--red);
  font-size: 15px;
}

.services-process {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) 2fr;
  gap: 52px;
  align-items: start;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 4%;
  right: 4%;
  border-top: 1px dashed #9aabba;
}

.process-timeline article {
  position: relative;
  text-align: center;
}

.process-step {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  color: #25303a;
  border-radius: 50%;
  background: #dbe7f2;
  font-size: 13px;
  font-weight: 900;
}

.process-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  color: var(--red);
  border: 1px solid #dce3ea;
  border-radius: 50%;
  background: var(--white);
  font-size: 40px;
  box-shadow: 0 10px 24px rgba(17, 24, 32, .06);
}

.process-timeline h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.process-timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.services-why {
  display: grid;
  grid-template-columns: minmax(240px, .95fr) repeat(4, 1fr);
  gap: 0;
  padding: 68px clamp(24px, 5vw, 64px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(12, 24, 36, .98), rgba(17, 34, 49, .96)),
    url('https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?auto=format&fit=crop&w=1600&q=80') center / cover;
}

.services-why > div,
.services-why article {
  padding: 0 36px;
}

.services-why > div {
  padding-left: 0;
}

.services-why article {
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, .28);
}

.services-why h2,
.services-red-cta h2 {
  color: var(--white);
}

.services-why p {
  color: rgba(255, 255, 255, .78);
}

.services-why span {
  color: var(--red);
  font-size: 58px;
}

.services-why h3 {
  margin: 18px 0 12px;
}

.services-red-cta {
  display: grid;
  grid-template-columns: 190px 1fr auto auto;
  gap: 34px;
  align-items: center;
  padding: 42px clamp(24px, 5vw, 64px);
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #d80000);
}

.energy-sketch {
  display: flex;
  align-items: end;
  gap: 14px;
  color: rgba(255, 255, 255, .86);
  font-size: 54px;
}

.services-red-cta h2,
.services-red-cta p {
  margin: 0;
}

.services-red-cta p {
  color: rgba(255, 255, 255, .86);
}

.services-red-contact {
  display: flex;
  gap: 28px;
  font-size: 14px;
}

.center {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.about-band {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 52px;
  padding: 64px clamp(24px, 5vw, 64px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(19, 34, 49, .96), rgba(12, 24, 36, .98)),
    url('https://images.unsplash.com/photo-1497440001374-f26997328c1b?auto=format&fit=crop&w=1600&q=80') center / cover;
}

.about-band.compact {
  display: block;
}

.about-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, .84);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stats-grid article {
  padding: 0 36px;
  border-left: 1px solid rgba(255, 255, 255, .35);
}

.stats-grid span {
  color: var(--red);
  font-size: 48px;
}

.stats-grid strong {
  display: block;
  margin-top: 12px;
  font-size: 42px;
  line-height: 1;
}

.stats-grid p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .82);
  font-weight: 700;
}

.project-grid,
.project-index,
.solution-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.project-card,
.solution-card,
.news-card,
.wide-card {
  overflow: hidden;
  border: 1px solid #e4e9ef;
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(17, 24, 32, .08);
  transition: transform .2s ease, border-color .2s ease;
}

.project-card img {
  height: 170px;
  object-fit: cover;
}

.project-card div {
  position: relative;
  min-height: 92px;
  padding: 18px 54px 18px 18px;
  color: var(--white);
  background: var(--navy);
}

.project-card h3,
.project-card p {
  margin: 0;
}

.project-card h3 {
  font-size: 16px;
}

.project-card p {
  margin-top: 4px;
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
}

.project-card span {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: var(--red);
  font-size: 30px;
}

.text-link {
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.partners-strip {
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) repeat(7, minmax(130px, 1fr));
  align-items: center;
  gap: 0;
  padding: 26px clamp(24px, 5vw, 64px);
  border-top: 1px solid #e4e9ef;
}

.partners-strip > div {
  padding-right: 42px;
}

.partners-strip h2 {
  font-size: 22px;
}

.partners-strip a {
  min-height: 86px;
  display: grid;
  place-items: center;
  border-left: 1px solid #dbe1e7;
  padding: 0 30px;
}

.partners-strip img {
  width: min(100%, 210px);
  max-height: 68px;
  object-fit: contain;
  filter: saturate(1.02);
}

.page-hero {
  min-height: 520px;
  padding: 168px clamp(24px, 5vw, 64px) 80px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(12, 24, 36, .92), rgba(12, 24, 36, .54)),
    var(--hero-image) center / cover;
}

.page-hero-content {
  max-width: 850px;
}

.page-hero h1,
.detail-hero h1,
.article h1 {
  margin: 0;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, .84);
  font-size: 19px;
}

.solutions-hero {
  min-height: 626px;
  padding: 168px clamp(36px, 6vw, 78px) 86px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.86) 31%, rgba(255,255,255,.16) 69%),
    var(--solutions-hero-image) center right / cover;
}

.solutions-hero-copy {
  max-width: 610px;
}

.solutions-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.solutions-hero h1 strong {
  color: var(--red);
  font-style: normal;
}

.solutions-hero-copy p:not(.eyebrow) {
  max-width: 540px;
  color: #2b3640;
  font-size: 18px;
  line-height: 1.65;
}

.solutions-core {
  padding-top: 26px;
  padding-bottom: 34px;
  background: linear-gradient(180deg, #fff 0%, #f7f9fb 46%, #fff 100%);
}

.center-head {
  max-width: 650px;
  margin: 0 auto 36px;
  text-align: center;
}

.center-head h2,
.center-head p {
  margin: 0;
}

.center-head h2 {
  font-size: 34px;
}

.center-head .mini-rule {
  margin: 12px auto 14px;
}

.center-head p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.solutions-card-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.solution-feature-card {
  overflow: hidden;
  border: 1px solid #e3e9ef;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(17, 24, 32, .09);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.solution-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 9, 9, .34);
  box-shadow: 0 18px 45px rgba(17, 24, 32, .13);
}

.solution-feature-card a {
  position: relative;
  min-height: 100%;
  display: block;
  color: inherit;
}

.solution-feature-card img {
  height: 205px;
  object-fit: cover;
}

.solution-feature-card span {
  position: absolute;
  top: 166px;
  left: 30px;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 6px solid var(--white);
  border-radius: 50%;
  background: var(--red);
  font-size: 29px;
}

.solution-feature-card div {
  min-height: 292px;
  padding: 52px 34px 30px;
}

.solution-feature-card h3,
.solution-feature-card p {
  margin: 0;
}

.solution-feature-card h3 {
  font-size: 22px;
  line-height: 1.18;
}

.solution-feature-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.solution-feature-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.solution-feature-card li {
  position: relative;
  margin-top: 7px;
  padding-left: 22px;
  color: #394652;
  font-size: 13px;
}

.solution-feature-card li::before {
  content: "⊕";
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 12px;
}

.solution-feature-card strong {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.solution-feature-card em {
  font-style: normal;
}

.solution-benefits {
  max-width: 1300px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #e4e9ef;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(17, 24, 32, .08);
}

.solution-benefits article {
  min-height: 112px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 26px 30px;
  border-left: 1px solid #dce3e9;
}

.solution-benefits article:first-child {
  border-left: 0;
}

.solution-benefits span {
  color: var(--red);
  font-size: 46px;
}

.solution-benefits h3,
.solution-benefits p {
  margin: 0;
}

.solution-benefits h3 {
  font-size: 16px;
}

.solution-benefits p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.solutions-cta {
  max-width: 1300px;
  margin: 38px auto 0;
  min-height: 154px;
  padding: 34px 54px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(9, 23, 35, .97), rgba(9, 23, 35, .88), rgba(9, 23, 35, .58)),
    var(--solutions-cta-image) center / cover;
}

.solutions-cta > span {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, .82);
  border-radius: 50%;
  color: var(--white);
  font-size: 44px;
}

.solutions-cta h2,
.solutions-cta p {
  margin: 0;
}

.solutions-cta h2 {
  color: var(--white);
  font-size: 30px;
}

.solutions-cta p {
  margin-top: 8px;
  max-width: 680px;
  color: rgba(255, 255, 255, .84);
}

.about-hero {
  position: relative;
  min-height: 690px;
  padding: 178px clamp(24px, 5vw, 64px) 92px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #f6f8fa;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.98) 24%, rgba(255,255,255,.9) 38%, rgba(255,255,255,.58) 56%, rgba(255,255,255,.18) 76%, rgba(255,255,255,0) 100%),
    linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.74) 100%);
  pointer-events: none;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(180deg, rgba(255,255,255,0), #fff);
  pointer-events: none;
}

.about-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.about-hero h1 {
  margin: 0;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1.04;
  font-weight: 950;
  text-transform: uppercase;
}

.about-hero h1 strong {
  color: var(--red);
  font-style: normal;
}

.about-hero-copy p:not(.eyebrow) {
  max-width: 560px;
  color: #2d3742;
  font-size: 17px;
}

.about-who {
  display: grid;
  grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr);
  gap: clamp(38px, 6vw, 82px);
  align-items: center;
}

.about-photo-panel {
  position: relative;
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  background: #e5e9ee;
  box-shadow: var(--shadow);
}

.about-photo-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 30, 45, .08), rgba(16, 30, 45, .25));
  pointer-events: none;
}

.helmet-card {
  position: absolute;
  z-index: 1;
  left: 24px;
  bottom: 24px;
  width: min(74%, 330px);
  padding: 18px 20px;
  color: var(--white);
  border-left: 4px solid var(--red);
  background: rgba(13, 25, 37, .78);
  backdrop-filter: blur(10px);
}

.helmet-card span {
  color: var(--red);
  font-weight: 950;
}

.helmet-card strong {
  display: block;
  margin-top: 4px;
}

.about-who-copy h2 {
  margin-bottom: 22px;
}

.about-who-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 38px;
}

.about-pillars article {
  min-height: 116px;
  padding: 0 18px;
  border-left: 1px solid #dbe1e7;
}

.about-pillars article:first-child {
  border-left: 0;
  padding-left: 0;
}

.about-pillars span,
.about-value-grid span,
.journey-stats span {
  display: block;
  color: var(--red);
  font-size: 42px;
  line-height: 1;
}

.about-pillars strong {
  display: block;
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.2;
}

.about-journey {
  width: calc(100% - clamp(48px, 10vw, 128px));
  margin: 0 auto;
  padding: 46px 32px;
  display: grid;
  grid-template-columns: minmax(220px, .8fr) 2.2fr;
  gap: 26px;
  align-items: center;
  border: 1px solid #e7ebef;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, #f8fafb);
  box-shadow: 0 16px 40px rgba(17, 24, 32, .07);
}

.journey-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.journey-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.journey-stats article {
  min-height: 112px;
  padding: 0 28px;
  border-left: 1px solid #d9e0e7;
}

.journey-stats strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 38px;
  line-height: 1;
}

.journey-stats p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.about-values h2,
.about-partners h2 {
  margin-bottom: 30px;
}

.about-value-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.about-value-grid article {
  min-height: 250px;
  padding: 34px 24px;
  text-align: center;
  border: 1px solid #e5eaf0;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(17, 24, 32, .07);
}

.about-value-grid span {
  margin-bottom: 22px;
}

.about-value-grid h3 {
  margin: 0 0 16px;
  font-size: 17px;
  text-transform: uppercase;
}

.about-value-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.about-people {
  display: grid;
  grid-template-columns: minmax(240px, .75fr) 2fr;
  gap: 38px;
  align-items: start;
}

.people-intro p:not(.eyebrow) {
  color: var(--muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  overflow: hidden;
  border: 1px solid #e4e9ef;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(17, 24, 32, .08);
}

.team-card img {
  height: 260px;
  object-fit: cover;
  object-position: center top;
  background: #edf1f4;
}

.team-card div {
  padding: 16px 14px 18px;
  text-align: center;
}

.team-card h3 {
  margin: 0;
  font-size: 15px;
}

.team-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.slider-dots {
  grid-column: 2;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: -10px;
}

.slider-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #c5ccd3;
}

.slider-dots span:first-child {
  width: 18px;
  background: var(--red);
}

.about-partners {
  text-align: center;
  padding-top: 18px;
}

.about-partner-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
  gap: 16px;
}

.about-partner-grid a {
  min-height: 112px;
  display: grid;
  place-items: center;
  padding: 22px 24px;
  border: 1px solid #e4e9ef;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(17, 24, 32, .06);
}

.about-partner-grid img {
  width: min(100%, 210px);
  max-height: 68px;
  object-fit: contain;
}

.two-col {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 46px;
}

.stack {
  display: grid;
  gap: 16px;
}

.info-row,
.value-grid article {
  padding: 24px;
  border: 1px solid #e4e9ef;
  border-radius: 8px;
  background: var(--white);
}

.info-row p {
  margin: 8px 0 0;
  color: var(--muted);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  background: var(--soft);
}

.value-grid h3 {
  margin: 0;
  font-size: 24px;
}

.card-list {
  display: grid;
  gap: 18px;
}

.wide-card {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
}

.wide-card img {
  height: 210px;
  object-fit: cover;
}

.wide-card > div {
  padding: 28px;
}

.wide-card h2,
.wide-card p {
  margin: 0 0 10px;
}

.wide-card .arrow {
  padding: 28px;
  color: var(--red);
  font-size: 34px;
}

.detail-hero {
  min-height: 720px;
  padding: 140px clamp(24px, 5vw, 64px) 70px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
}

.detail-hero img {
  height: 520px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.detail-hero h2 {
  margin: 14px 0;
  color: var(--red);
  font-size: 25px;
}

.detail-hero p {
  color: var(--muted);
  font-size: 18px;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.facts div {
  padding: 18px;
  background: var(--soft);
  border-radius: 6px;
}

.facts dt {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.facts dd {
  margin: 4px 0 0;
  font-weight: 900;
}

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

.project-card.tall img {
  height: 230px;
}

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

.solution-card img,
.news-card img {
  height: 250px;
  object-fit: cover;
}

.solution-card div,
.news-card div {
  padding: 24px;
}

.solution-card h2,
.news-card h2 {
  margin: 0 0 12px;
  font-size: 25px;
}

.solution-card p:not(.eyebrow),
.news-card span {
  color: var(--muted);
}

.news-card p {
  margin: 0 0 8px;
  color: var(--red);
  font-weight: 900;
}

.article {
  max-width: 940px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}

.article img {
  height: min(460px, 55vw);
  margin-bottom: 34px;
  border-radius: 8px;
  object-fit: cover;
}

.article .lead {
  color: var(--red);
  font-size: 22px;
  font-weight: 800;
}

.article p:not(.eyebrow) {
  font-size: 18px;
}

.contact-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 42px;
}

.contact-hero {
  position: relative;
  min-height: 650px;
  padding: 168px clamp(24px, 5vw, 64px) 110px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #f6f8fa;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.98) 24%, rgba(255,255,255,.88) 40%, rgba(255,255,255,.48) 62%, rgba(255,255,255,.08) 100%),
    linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.72) 100%);
  pointer-events: none;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(255,255,255,0), #fff);
  pointer-events: none;
}

.contact-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.contact-hero h1 {
  margin: 0;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-hero h1 strong {
  color: var(--red);
  font-style: normal;
}

.contact-hero-copy p:not(.eyebrow) {
  color: #2f3a44;
  font-size: 17px;
}

.contact-methods {
  position: relative;
  z-index: 2;
  width: calc(100% - clamp(48px, 10vw, 128px));
  margin: -58px auto 0;
  padding: 26px 34px 34px;
  border: 1px solid #e5eaf0;
  border-radius: 10px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 50px rgba(17, 24, 32, .1);
}

.contact-methods h2 {
  margin-bottom: 24px;
  text-align: center;
  font-size: 28px;
}

.contact-methods h2 strong,
.contact-panel h2 strong {
  color: var(--red);
  font-style: normal;
}

.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.contact-method-grid article {
  min-height: 150px;
  padding: 12px 28px;
  text-align: center;
  border-left: 1px solid #dfe5eb;
}

.contact-method-grid article:first-child {
  border-left: 0;
}

.contact-method-grid span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  color: var(--red);
  border-radius: 50%;
  background: #f2f4f6;
  font-size: 37px;
}

.contact-method-grid h3,
.contact-method-grid p {
  margin: 0;
}

.contact-method-grid h3 {
  margin-bottom: 8px;
}

.contact-method-grid p {
  color: var(--ink);
  font-size: 15px;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 28px;
}

.contact-panel {
  padding: 34px;
  border: 1px solid #e5eaf0;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(17, 24, 32, .08);
}

.panel-head h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
}

.panel-head p {
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}

.form-grid .wide {
  grid-column: 1 / -1;
}

.form-grid b {
  color: var(--red);
}

select {
  width: 100%;
  border: 1px solid #d4dbe3;
  border-radius: 4px;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.contact-message-form .btn {
  min-width: 280px;
  margin-top: 24px;
}

.privacy-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-side {
  display: grid;
  gap: 24px;
}

.map-card {
  position: relative;
  overflow: hidden;
  margin-top: 22px;
  border-radius: 8px;
  background: #edf1f4;
}

.map-card img {
  height: 310px;
  object-fit: cover;
}

.map-label {
  position: absolute;
  top: 95px;
  left: 50%;
  width: min(250px, 44%);
  padding: 18px 20px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-label p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.map-pin {
  position: absolute;
  left: 50%;
  bottom: 80px;
  color: var(--red);
  font-size: 54px;
}

.support-heading {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 20px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid #dfe5eb;
}

.support-heading > span {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  color: var(--red);
  border-radius: 50%;
  background: #f4f6f8;
  font-size: 36px;
}

.support-heading h2,
.support-heading p {
  margin: 0;
}

.support-heading p {
  margin-top: 8px;
  color: var(--muted);
}

.support-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 24px;
}

.support-features article {
  padding: 0 18px;
  border-left: 1px solid #dfe5eb;
}

.support-features article:first-child {
  border-left: 0;
  padding-left: 0;
}

.support-features span {
  color: var(--red);
  font-size: 32px;
}

.support-features strong {
  display: block;
  margin-top: 6px;
}

.support-features p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-info {
  padding: 34px;
  color: var(--white);
  border-radius: 8px;
  background: #070809;
}

.contact-info h2 {
  margin-bottom: 28px;
}

.contact-block {
  margin-top: 30px;
}

.contact-block span {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.contact-block p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.75;
}

.contact-block a {
  color: inherit;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #d4dbe3;
  border-radius: 4px;
  padding: 14px 16px;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.notice {
  padding: 14px 16px;
  border-radius: 4px;
  font-weight: 800;
}

.success {
  color: #075321;
  background: #e6f7ec;
}

.error {
  color: #7c100f;
  background: #feeceb;
}

.toast-message {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  max-width: min(420px, calc(100vw - 48px));
  padding: 16px 18px;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(17, 24, 32, .18);
  font-weight: 800;
  transform: translateY(18px);
  opacity: 0;
  animation: toast-in .28s ease forwards;
}

.toast-message.is-hiding {
  animation: toast-out .28s ease forwards;
}

.toast-success {
  color: #075321;
  border: 1px solid rgba(7, 83, 33, .14);
  background: #e6f7ec;
}

@keyframes toast-in {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes toast-out {
  to {
    transform: translateY(18px);
    opacity: 0;
  }
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 42px;
  align-items: center;
  padding: 34px clamp(24px, 5vw, 64px);
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #d80000);
}

.cta-band h2 {
  color: var(--white);
}

.cta-contact {
  display: flex;
  gap: 42px;
}

.cta-contact p {
  margin: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.35fr .72fr 1fr 1.18fr 1fr;
  gap: 36px;
  align-items: start;
  padding: 48px clamp(24px, 5vw, 64px) 24px;
  color: rgba(255, 255, 255, .72);
  background: var(--navy-2);
  font-size: 14px;
}

.site-footer .brand-mark {
  color: var(--white);
  font-size: 30px;
}

.site-footer nav {
  display: grid;
  gap: 9px;
}

.site-footer h3,
.site-footer h4,
.site-footer p {
  margin: 0;
}

.site-footer h3 {
  margin-top: 18px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.25;
}

.site-footer h4 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
}

.footer-brand p {
  margin-top: 14px;
}

.footer-contact {
  display: grid;
  gap: 14px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.footer-bottom p:last-child {
  display: flex;
  gap: 22px;
}

.solutions-footer {
  padding: 52px clamp(36px, 6vw, 78px) 0;
  color: rgba(255, 255, 255, .72);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, .08), transparent 28%),
    linear-gradient(135deg, #07121c, #132434 64%, #07121c);
  font-size: 14px;
}

.solutions-footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .72fr .92fr 1.28fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.solutions-footer p,
.solutions-footer h4 {
  margin: 0;
}

.solutions-footer-brand p {
  margin-top: 18px;
  max-width: 300px;
  line-height: 1.7;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-row a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #0b1722;
  border-radius: 50%;
  background: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 900;
}

.solutions-footer h4 {
  margin-bottom: 17px;
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
}

.solutions-footer nav {
  display: grid;
  gap: 8px;
}

.solutions-footer nav a:hover {
  color: var(--white);
}

.solutions-footer-contact {
  display: grid;
  gap: 14px;
}

.solutions-footer-map {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.solutions-footer-map img {
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  opacity: .42;
}

.solutions-footer-map span {
  position: absolute;
  left: 56%;
  top: 44%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  border-radius: 50% 50% 50% 0;
  background: var(--red);
  rotate: -45deg;
}

.solutions-footer-map span::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: var(--white);
}

.solutions-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.solutions-footer-bottom p:last-child {
  display: flex;
  gap: 42px;
}

.news-hero {
  min-height: 626px;
  padding: 168px clamp(36px, 6vw, 78px) 86px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.86) 31%, rgba(255,255,255,.16) 69%),
    var(--news-hero-image) center right / cover;
}

.news-hero-copy {
  max-width: 600px;
}

.news-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.news-hero h1 strong {
  color: var(--red);
  font-style: normal;
}

.news-hero-copy p:not(.eyebrow) {
  max-width: 560px;
  color: #2b3640;
  font-size: 18px;
  line-height: 1.65;
}

.news-index {
  padding-top: 40px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 54%, #fff 100%);
}

.news-toolbar {
  max-width: 1320px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 350px);
  gap: 22px;
  align-items: center;
}

.news-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  overflow: hidden;
  border: 1px solid #e6ebf0;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(17, 24, 32, .06);
}

.news-tabs a {
  min-height: 54px;
  padding: 0 28px;
  display: grid;
  place-items: center;
  color: #151e27;
  font-size: 14px;
  font-weight: 800;
}

.news-tabs a.is-active,
.news-tabs a:hover {
  color: var(--white);
  background: var(--red);
}

.news-search {
  display: grid;
  grid-template-columns: 1fr 54px;
  gap: 10px;
}

.news-search label {
  min-height: 54px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid #e6ebf0;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(17, 24, 32, .06);
}

.news-search input,
.news-subscribe input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
}

.news-search button {
  border: 0;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(17, 24, 32, .06);
  font-size: 22px;
  cursor: pointer;
}

.news-layout {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
}

.news-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, .7fr);
  gap: 24px;
}

.news-feature-card,
.news-mini-card,
.news-list-card,
.news-panel,
.news-subscribe {
  overflow: hidden;
  border: 1px solid #e3e9ef;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(17, 24, 32, .08);
}

.news-feature-card a,
.news-mini-card a,
.news-list-card a {
  display: block;
  min-height: 100%;
  color: inherit;
}

.news-image-wrap {
  position: relative;
}

.news-image-wrap img {
  height: 290px;
  object-fit: cover;
}

.news-image-wrap > span {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  color: var(--white);
  border-radius: 4px;
  background: var(--red);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.news-feature-card > a > div:last-child {
  padding: 28px 28px 34px;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
}

.news-meta strong {
  margin-left: auto;
  color: var(--red);
  font-size: 12px;
}

.news-feature-card h2,
.news-feature-card p,
.news-mini-card h3,
.news-list-card h3 {
  margin: 0;
}

.news-feature-card h2 {
  font-size: 30px;
  line-height: 1.18;
}

.news-feature-card p:not(.news-meta) {
  margin-top: 14px;
  color: var(--muted);
}

.news-feature-card strong:not(.news-meta strong),
.news-mini-card strong,
.news-list-card strong {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.news-feature-card em,
.news-mini-card em,
.news-list-card em {
  font-style: normal;
}

.news-side-list {
  display: grid;
  gap: 24px;
}

.news-mini-card img {
  height: 154px;
  object-fit: cover;
}

.news-mini-card div,
.news-list-card div {
  padding: 20px;
}

.news-mini-card h3,
.news-list-card h3 {
  font-size: 17px;
  line-height: 1.35;
}

.news-card-row {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.news-list-card img {
  height: 162px;
  object-fit: cover;
}

.news-sidebar {
  display: grid;
  gap: 28px;
}

.news-panel {
  padding: 30px 28px;
}

.news-panel h2,
.news-subscribe h2,
.news-panel p,
.news-subscribe p {
  margin: 0;
}

.news-panel h2,
.news-subscribe h2 {
  font-size: 24px;
}

.news-panel nav {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.news-panel nav a {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 12px;
  align-items: center;
  color: #25303a;
  font-weight: 800;
}

.news-panel nav a span {
  font-size: 22px;
}

.news-panel nav a strong {
  min-width: 30px;
  padding: 3px 7px;
  border-radius: 999px;
  color: var(--muted);
  background: #eef2f5;
  font-size: 12px;
  text-align: center;
}

.news-panel nav a.is-active,
.news-panel nav a:hover {
  color: var(--red);
}

.news-subscribe {
  padding: 32px 28px;
  color: var(--white);
  background: linear-gradient(135deg, #07121c, #132434);
}

.news-subscribe > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-size: 28px;
}

.news-subscribe p {
  margin-top: 12px;
  color: rgba(255, 255, 255, .76);
}

.news-subscribe form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.news-subscribe input {
  min-height: 52px;
  padding: 0 16px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 6px;
  background: rgba(255, 255, 255, .08);
}

.news-subscribe .btn {
  width: 100%;
}

.news-follow .social-row a {
  color: var(--white);
  background: var(--ink);
}

.news-follow p {
  margin-top: 10px;
  color: var(--muted);
}

.news-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.news-pagination a,
.news-pagination span {
  min-width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  color: var(--muted);
  background: #eef2f5;
  font-size: 13px;
  font-weight: 800;
}

.news-pagination a.is-active {
  color: var(--white);
  background: var(--red);
}

.news-cta {
  max-width: 1320px;
  margin: 42px auto 0;
  min-height: 150px;
  padding: 34px 54px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(9, 23, 35, .96), rgba(9, 23, 35, .84), rgba(9, 23, 35, .56)),
    var(--news-cta-image) center / cover;
}

.news-cta > span {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  color: var(--red);
  border-radius: 50%;
  background: var(--white);
  font-size: 48px;
}

.news-cta h2,
.news-cta p {
  margin: 0;
}

.news-cta h2 {
  color: var(--white);
  font-size: 30px;
}

.news-cta p {
  margin-top: 8px;
  max-width: 680px;
  color: rgba(255, 255, 255, .84);
}

.news-article .btn {
  margin-top: 28px;
}

.setup-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--soft);
}

.setup-panel {
  max-width: 720px;
  padding: 42px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.muted {
  color: var(--muted);
}

.app-error {
  min-height: 55vh;
  padding-top: 150px;
}

.app-error h1 {
  margin: 0 0 14px;
  font-size: clamp(36px, 5vw, 64px);
}

.app-error p:not(.eyebrow) {
  max-width: 840px;
  color: var(--muted);
  font-size: 18px;
}

@media (max-width: 1120px) {
  .service-grid,
  .project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero,
  .about-band,
  .about-who,
  .about-journey,
  .about-people,
  .detail-hero,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-hero {
    min-height: 620px;
  }

  .about-pillars,
  .journey-stats,
  .about-value-grid,
  .team-grid,
  .about-partner-grid,
  .services-detail-grid,
  .solutions-card-grid,
  .solution-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-process,
  .services-why,
  .services-red-cta,
  .solutions-cta,
  .solutions-footer-grid,
  .news-toolbar,
  .news-layout,
  .news-feature-grid,
  .news-cta,
  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .solution-benefits article:nth-child(odd) {
    border-left: 0;
  }

  .solution-benefits article {
    border-top: 1px solid #dce3e9;
  }

  .solution-benefits article:nth-child(-n + 2) {
    border-top: 0;
  }

  .contact-method-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-method-grid article:nth-child(odd) {
    border-left: 0;
  }

  .contact-method-grid article {
    border-top: 1px solid #dfe5eb;
    padding-top: 26px;
  }

  .process-timeline {
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    overflow-x: auto;
    padding-bottom: 12px;
  }

  .services-why > div,
  .services-why article {
    padding: 24px 0;
  }

  .services-why article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .28);
  }

  .services-red-contact {
    display: grid;
    gap: 10px;
  }

  .about-journey {
    width: calc(100% - 48px);
  }

  .journey-stats article:nth-child(odd),
  .about-pillars article:nth-child(odd) {
    border-left: 0;
  }

  .journey-stats article,
  .about-pillars article {
    padding: 20px;
    border-top: 1px solid #d9e0e7;
  }

  .slider-dots {
    grid-column: 1;
  }

  .feature-panel {
    max-width: 680px;
  }

  .partners-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .partners-strip > div {
    grid-column: 1 / -1;
    margin-bottom: 16px;
  }
}

@media (max-width: 860px) {
  .site-header {
    height: 74px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 74px;
    right: 18px;
    left: 18px;
    display: none;
    padding: 16px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
    justify-content: stretch;
    gap: 0;
  }

  .solutions-hero {
    min-height: 520px;
    padding-top: 130px;
  }

  .solutions-cta {
    padding: 28px;
  }

  .news-hero {
    min-height: 520px;
    padding-top: 130px;
  }

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

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

  .solutions-footer {
    padding-right: 24px;
    padding-left: 24px;
  }

  .solutions-footer-grid {
    gap: 28px;
  }

  .main-nav a {
    padding: 14px 4px;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
  }

  .split,
  .row-head,
  .two-col,
  .wide-card,
  .cta-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .solutions-footer-bottom {
    display: grid;
  }

  .row-head {
    align-items: start;
  }

  .stats-grid,
  .project-index,
  .solution-grid,
  .news-grid,
  .value-grid,
  .about-value-grid,
  .team-grid,
  .about-partner-grid,
  .services-detail-grid {
    grid-template-columns: 1fr;
  }

  .services-hero {
    min-height: auto;
    padding-top: 126px;
  }

  .contact-hero {
    min-height: auto;
    padding-top: 126px;
  }

  .contact-hero-bg {
    opacity: .46;
  }

  .contact-methods {
    width: calc(100% - 32px);
    margin-top: -36px;
  }

  .contact-method-grid,
  .form-grid,
  .support-features {
    grid-template-columns: 1fr;
  }

  .contact-method-grid article,
  .contact-method-grid article:first-child,
  .support-features article,
  .support-features article:first-child {
    border-left: 0;
    padding-left: 0;
  }

  .support-features article {
    padding: 18px 0;
    border-top: 1px solid #dfe5eb;
  }

  .map-label {
    position: static;
    width: auto;
    margin: 16px;
  }

  .map-pin {
    bottom: 128px;
  }

  .support-heading {
    grid-template-columns: 1fr;
  }

  .service-detail-card {
    grid-template-columns: 1fr;
  }

  .service-detail-card img {
    min-height: 240px;
    height: 260px;
    order: -1;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .process-timeline::before {
    display: none;
  }

  .process-timeline article {
    padding-bottom: 22px;
    border-bottom: 1px solid #e0e6ec;
  }

  .about-hero {
    padding-top: 126px;
  }

  .about-hero-bg {
    width: 100%;
    opacity: .42;
  }

  .about-hero-copy {
    max-width: 560px;
  }

  .about-photo-panel {
    min-height: 360px;
  }

  .about-pillars,
  .journey-stats {
    grid-template-columns: 1fr;
  }

  .about-pillars article,
  .about-pillars article:first-child,
  .journey-stats article {
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid #d9e0e7;
  }

  .about-journey {
    width: calc(100% - 32px);
    padding: 34px 24px;
  }

  .stats-grid article {
    padding: 22px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .35);
  }

  .wide-card img,
  .detail-hero img {
    height: 280px;
  }

  .facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .service-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 36px;
  }

  .about-hero h1 {
    font-size: 36px;
  }

  .services-hero h1 {
    font-size: 36px;
  }

  .solutions-hero h1 {
    font-size: 36px;
  }

  .news-hero h1 {
    font-size: 36px;
  }

  .solutions-card-grid,
  .solution-benefits,
  .news-card-row,
  .news-sidebar {
    grid-template-columns: 1fr;
  }

  .solution-benefits article,
  .solution-benefits article:nth-child(-n + 2) {
    border-left: 0;
    border-top: 1px solid #dce3e9;
  }

  .solution-benefits article:first-child {
    border-top: 0;
  }

  .solutions-cta {
    text-align: left;
  }

  .news-tabs a {
    flex: 1 1 100%;
  }

  .news-feature-card h2 {
    font-size: 24px;
  }

  .news-cta {
    padding: 28px;
    text-align: left;
  }

  .solutions-footer-bottom p:last-child {
    flex-wrap: wrap;
    gap: 18px;
  }

  .contact-hero h1 {
    font-size: 36px;
  }

  .contact-panel {
    padding: 24px;
  }

  .contact-message-form .btn {
    width: 100%;
    min-width: 0;
  }

  .energy-sketch {
    font-size: 42px;
  }

  .feature-panel article {
    grid-template-columns: 54px 1fr;
  }

  .line-icon {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }

  .partners-strip {
    grid-template-columns: 1fr;
  }

  .partners-strip a {
    border-left: 0;
    border-top: 1px solid #dbe1e7;
  }

  .cta-contact {
    display: grid;
    gap: 16px;
  }
}
