:root {
  color-scheme: light;
  --ink: #102033;
  --muted: #405063;
  --line: #dce5ee;
  --panel: #ffffff;
  --soft: #f4f8fc;
  --dark: #09223c;
  --dark-2: #123a62;
  --blue: #0a74c9;
  --cyan: #18c6e8;
  --electric: #76f2ff;
  --red: #e2334f;
  --green: #17a673;
  --shadow: 0 20px 60px rgba(8, 25, 44, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: #f8fbff;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

main,
section {
  max-width: 100%;
  overflow-x: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(10, 116, 201, 0.14);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 30px rgba(37, 70, 101, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand img {
  width: 164px;
  height: 44px;
  object-fit: contain;
  filter: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 32px);
  color: #34465b;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  content: "";
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

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

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

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 6px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-action {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(10, 116, 201, 0.18);
}

.button:hover,
.header-action:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #06111f;
  background: var(--cyan);
  box-shadow: 0 14px 35px rgba(24, 198, 232, 0.25);
}

.button-secondary {
  color: var(--blue);
  border: 1px solid rgba(10, 116, 201, 0.34);
  background: rgba(255, 255, 255, 0.78);
}

.button-outline {
  color: var(--blue);
  border: 1px solid rgba(0, 111, 201, 0.34);
  background: #ffffff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(10, 116, 201, 0.34);
  border-radius: 6px;
  background: #f2f8fd;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--blue);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: 100vw;
  padding: 130px clamp(20px, 6vw, 86px) 72px;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 32%, rgba(24, 198, 232, 0.16), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 254, 0.95) 48%, rgba(229, 240, 250, 0.7) 100%),
    linear-gradient(0deg, rgba(248, 251, 255, 1) 0%, rgba(248, 251, 255, 0.2) 36%);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(10, 116, 201, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 116, 201, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 78%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 920px;
  min-width: 0;
}

.hero-logo {
  width: 430px;
  max-width: 100%;
  margin-bottom: 28px;
  filter: none;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.hero .eyebrow {
  color: var(--blue);
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1,
h2,
h3,
.eyebrow,
.hero-lead {
  overflow-wrap: anywhere;
}

h1 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(48px, 8vw, 108px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 760px;
  color: #26384b;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 46px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  max-width: 820px;
  margin: 0;
  border: 1px solid rgba(10, 116, 201, 0.16);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 46px rgba(37, 70, 101, 0.1);
}

.hero-stats div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.88);
}

.hero-stats dt {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 800;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.section {
  padding: clamp(70px, 9vw, 126px) clamp(20px, 6vw, 86px);
}

.section-muted {
  background:
    linear-gradient(180deg, #ffffff 0%, #f0f6fb 100%);
}

.section-dark {
  color: #ffffff;
  background: var(--dark);
}

.section-heading {
  max-width: 920px;
  min-width: 0;
  margin-bottom: 44px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.section-dark .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.value-grid,
.standards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.value-card,
.standards-grid article,
.product-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 28px rgba(37, 70, 101, 0.08);
}

.value-card {
  min-height: 260px;
  padding: 28px;
}

.value-number {
  display: block;
  margin-bottom: 34px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.value-card p,
.product-card p,
.catalog-card p,
.standards-grid p,
.team-copy p,
.split-copy p,
.solution-feature p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.team-section {
  padding-top: 0;
  background: #f8fbff;
}

.team-layout {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(10, 116, 201, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(37, 70, 101, 0.1);
}

.team-photo {
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, #eef5fb, #ffffff);
  box-shadow: inset 0 0 0 1px rgba(10, 116, 201, 0.08);
}

.team-photo img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center top;
}

.team-copy {
  min-width: 0;
}

.team-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.team-points span {
  padding: 15px 16px;
  border-left: 3px solid var(--blue);
  background: #f3f8fd;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.35;
}

.team-cap {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(10, 116, 201, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #f3f8fd);
}

.team-cap img {
  width: 160px;
  height: 132px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
}

.team-cap strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 18px;
}

.team-cap p {
  margin: 0;
}

.solutions-layout {
  display: grid;
  gap: 24px;
}

.solution-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.feature-copy {
  min-width: 0;
  padding: clamp(28px, 5vw, 58px);
}

.tag {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.solution-feature img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: contain;
  padding: 32px;
  background: #f8fbfe;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-weight: 600;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background: var(--cyan);
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  padding: 24px;
  background: #ffffff;
}

.product-card div {
  padding: 24px;
}

.accent-card {
  display: flex;
  align-items: flex-end;
  min-height: 100%;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(6, 17, 31, 0.92), rgba(0, 111, 201, 0.8)),
    url("assets/metarack.webp") center / cover;
  border: 0;
}

.accent-card p,
.accent-card .tag {
  color: rgba(255, 255, 255, 0.82);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.catalog-section {
  background: #ffffff;
}

.liquid-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 18%, rgba(24, 198, 232, 0.18), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #eef6fc 48%, #f8fbff 100%);
}

.liquid-copy {
  min-width: 0;
}

.liquid-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tech-pills span {
  padding: 10px 13px;
  border: 1px solid rgba(10, 116, 201, 0.2);
  border-radius: 999px;
  color: #163856;
  background: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.liquid-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(10, 116, 201, 0.16);
  border-radius: 8px;
  background: #07101f;
  box-shadow: 0 22px 56px rgba(37, 70, 101, 0.18);
}

.liquid-visual img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
}

.liquid-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 42%, rgba(3, 10, 20, 0.78) 100%),
    linear-gradient(90deg, rgba(24, 198, 232, 0.22), transparent 24%);
}

.liquid-metrics {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.liquid-metrics div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(3, 10, 20, 0.72);
  backdrop-filter: blur(12px);
}

.liquid-metrics strong,
.liquid-metrics span {
  display: block;
}

.liquid-metrics strong {
  margin-bottom: 6px;
  color: var(--electric);
  font-size: 22px;
}

.liquid-metrics span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.45;
}

.liquid-cards {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.liquid-cards article {
  min-height: 170px;
  padding: 24px;
  border: 1px solid rgba(10, 116, 201, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(37, 70, 101, 0.08);
}

.liquid-cards p {
  color: var(--muted);
  line-height: 1.6;
}

.cooling-gallery {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 16px;
}

.cooling-gallery figure {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  margin: 0;
  border: 1px solid rgba(118, 242, 255, 0.16);
  border-radius: 8px;
  background: #07101f;
}

.cooling-gallery img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.cooling-gallery figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(3, 10, 20, 0.72);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 700;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.catalog-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 310px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(8, 25, 44, 0.06);
}

.catalog-card .button {
  justify-self: start;
  margin-top: 14px;
}

.catalog-card-dark {
  color: #ffffff;
  border-color: transparent;
  background:
    linear-gradient(135deg, rgba(6, 17, 31, 0.94), rgba(0, 111, 201, 0.82)),
    url("assets/hero.webp") center / cover;
}

.catalog-card-dark p,
.catalog-card-dark .tag {
  color: rgba(255, 255, 255, 0.82);
}

.compact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.compact-grid span {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 16px;
  border-left: 3px solid var(--blue);
  background: var(--soft);
  font-weight: 700;
  line-height: 1.35;
}

.visual-panel {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(10, 116, 201, 0.16);
  background: #eef5fb;
  box-shadow: var(--shadow);
}

.visual-panel img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  padding: 0;
}

.process-section {
  position: relative;
  overflow: hidden;
}

.process-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(9, 34, 60, 0.94), rgba(9, 34, 60, 0.56)),
    url("assets/hero.webp") center / cover;
  opacity: 0.9;
}

.process-section > * {
  position: relative;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.14);
}

.timeline article {
  min-height: 310px;
  padding: 28px;
  background: rgba(6, 17, 31, 0.74);
}

.timeline span {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--cyan);
  font-weight: 800;
}

.timeline p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

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

.standards-grid article {
  padding: 30px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.55fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(70px, 9vw, 118px) clamp(20px, 6vw, 86px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(9, 34, 60, 0.96), rgba(18, 58, 98, 0.88)),
    url("assets/hero.webp") center / cover;
}

.contact-copy h2 {
  font-size: clamp(34px, 5vw, 64px);
}

.contact-copy p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.contact-panel a:not(.button),
.contact-panel p {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-panel span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-panel .button {
  margin-top: 12px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 6vw, 86px);
  color: rgba(255, 255, 255, 0.72);
  background: #030912;
}

.site-footer p {
  margin: 0;
}

.site-footer .credits {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.site-footer a {
  color: #ffffff;
  font-weight: 700;
}

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

  .main-nav,
  .header-action {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-header.menu-visible .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: grid;
    gap: 4px;
    justify-content: stretch;
    padding: 18px clamp(18px, 4vw, 56px) 28px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 36px rgba(37, 70, 101, 0.12);
  }

  .site-header.menu-visible .main-nav a {
    padding: 15px 0;
    font-size: 18px;
    color: var(--ink);
  }

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

  .solution-feature,
  .team-layout,
  .liquid-section,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .team-photo img {
    height: 500px;
  }

  .liquid-cards {
    grid-template-columns: 1fr;
  }

  .cooling-gallery {
    grid-template-columns: 1fr;
  }

  .visual-panel img {
    height: 430px;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding: 116px 28px 72px;
  }

  .hero-content {
    width: calc(100vw - 56px);
  }

  .hero-logo,
  .hero-lead {
    width: calc(100vw - 56px);
    max-width: 100%;
  }

  .hero-logo {
    display: none;
  }

  h1 {
    font-size: 38px;
    line-height: 1;
  }

  h2 {
    font-size: 24px;
    line-height: 1.12;
  }

  .hero-lead {
    font-size: 19px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-stats,
  .value-grid,
  .solution-cards,
  .catalog-grid,
  .timeline,
  .standards-grid,
  .team-points,
  .compact-grid {
    grid-template-columns: 1fr;
  }

  .team-cap {
    grid-template-columns: 1fr;
  }

  .team-cap img {
    width: 100%;
    height: 220px;
  }

  .solution-feature img {
    min-height: 250px;
    padding: 20px;
  }

  .liquid-visual img {
    min-height: 340px;
  }

  .liquid-metrics {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    padding: 14px;
    background: #ffffff;
  }

  .liquid-metrics div {
    background: #f6f9fc;
  }

  .liquid-metrics strong {
    color: var(--blue);
  }

  .liquid-metrics span {
    color: var(--muted);
  }

  .product-card {
    display: grid;
    grid-template-columns: 118px 1fr;
    align-items: center;
  }

  .product-card img {
    height: 190px;
    padding: 12px;
  }

  .accent-card {
    min-height: 280px;
  }

  .timeline article {
    min-height: 240px;
  }

  .visual-panel img {
    height: 360px;
  }

  .team-photo img {
    height: 430px;
  }

  .contact-panel {
    padding: 20px;
  }
}

@media (max-width: 440px) {
  .brand {
    max-width: 170px;
  }

  .brand img {
    width: 142px;
    height: 36px;
  }

  .team-layout {
    padding: 20px;
  }

  .team-photo img {
    height: 390px;
  }

  h1 {
    font-size: 37px;
  }

  h2 {
    font-size: 24px;
  }

  .section,
  .contact-section {
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero-stats div,
  .value-card,
  .standards-grid article,
  .timeline article {
    padding: 22px;
  }

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

  .product-card img {
    width: 100%;
    height: 220px;
  }
}
