﻿@font-face {
  font-family: 'SF Pro Display Medium';
  src: url('SFpro/SFPRODISPLAYMEDIUM.OTF') format('opentype');
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Densia Sans";
  src: url("assets/fonts/DensiaSans.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

/* START: Custom shared design tokens used across home page and standalone pages. */
:root {
  --navy: #433d40;
  --navy-dark: #2f2a2c;
  --blue-soft: #cf3134;
  --gold: #cf3134;
  --gold-soft: #ffd8d8;
  --hero-blue: #cf3134;
  --hero-blue-dark: #3f3a3d;
  --text: #2f2a2c;
  --muted: #746d70;
  --line: #eadcdf;
  --surface: #ffffff;
  --section: #faf5f5;
  --shadow: 0 16px 40px rgba(47, 42, 44, 0.1);
  --container: 1180px;
}
/* END: Custom shared design tokens used across home page and standalone pages. */

/* Custom founder portrait side enhancement by Aditya Raj. */
.portrait-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 22px;
  padding-right: 78px;
  justify-items: center;
}

.portrait-card::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 50%;
  width: 86%;
  height: 68%;
  transform: translateX(-50%);
  border-radius: 42px;
  background:
    radial-gradient(circle at top, rgba(207, 49, 52, 0.14), transparent 56%),
    linear-gradient(180deg, rgba(255, 248, 248, 0.9), rgba(255, 255, 255, 0));
  filter: blur(2px);
  z-index: 0;
}

.portrait-stage {
  position: relative;
  z-index: 1;
  width: min(100%, 500px);
  padding: 18px 18px 24px;
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 248, 0.98)),
    radial-gradient(circle at top left, rgba(207, 49, 52, 0.1), transparent 38%);
  border: 1px solid rgba(235, 220, 223, 0.92);
  box-shadow:
    0 34px 70px rgba(47, 42, 44, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.portrait-stage::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  pointer-events: none;
}

.portrait-stage::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 24px;
  width: 92px;
  height: 92px;
  border-radius: 28px;
  background:
    radial-gradient(circle at center, rgba(207, 49, 52, 0.14), rgba(207, 49, 52, 0.02) 68%, transparent 70%);
  pointer-events: none;
}

.portrait-frame {
  width: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
  padding: 14px;
  border-radius: 36px;
}

.portrait-photo {
  border-radius: 28px;
  object-position: center 12%;
}

.portrait-badge {
  left: 30px;
  right: 30px;
  bottom: 30px;
  padding: 16px 18px 17px;
  border-radius: 22px;
}

.portrait-float-card {
  position: absolute;
  left: 22px;
  bottom: 18px;
  display: grid;
  gap: 2px;
  min-width: 132px;
  padding: 14px 16px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, #ffffff, #fff6f7),
    radial-gradient(circle at top left, rgba(207, 49, 52, 0.07), transparent 38%);
  border: 1px solid #efdddd;
  box-shadow:
    0 18px 34px rgba(47, 42, 44, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  z-index: 2;
}

.portrait-float-card span {
  color: #b83e3a;
  font-family: "Barlow", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portrait-float-card strong {
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 1.12rem;
  line-height: 1.2;
}

.portrait-meta {
  gap: 8px;
  width: min(100%, 470px);
  padding: 20px 22px 18px;
  justify-items: center;
  text-align: center;
  border-radius: 26px;
  border: 1px solid #ecdddf;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 248, 0.98)),
    radial-gradient(circle at top, rgba(207, 49, 52, 0.06), transparent 48%);
  box-shadow:
    0 20px 38px rgba(47, 42, 44, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.portrait-meta-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}

.portrait-meta-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fffefe, #fff5f6);
  border: 1px solid #eddfe2;
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

@media (max-width: 980px) {
  .portrait-stage {
    width: min(100%, 460px);
  }

  .portrait-meta {
    width: min(100%, 460px);
  }
}

@media (max-width: 760px) {
  .portrait-stage,
  .portrait-meta {
    width: 100%;
  }

  .portrait-stage {
    padding: 14px 14px 20px;
    border-radius: 28px;
  }

  .portrait-frame {
    padding: 10px;
    border-radius: 28px;
  }

  .portrait-photo {
    border-radius: 22px;
  }

  .portrait-badge {
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 14px 16px;
    border-radius: 18px;
  }

  .portrait-float-card {
    left: 16px;
    bottom: 14px;
    min-width: 118px;
    padding: 12px 14px;
    border-radius: 18px;
  }

  .portrait-meta {
    padding: 18px 18px 16px;
  }

  .portrait-meta-tags {
    gap: 8px;
  }

  .portrait-meta-tags span {
    font-size: 0.76rem;
    min-height: 32px;
    padding: 0 12px;
  }
}

/* Custom founder portrait cleanup pass by Aditya Raj. */
.portrait-stage {
  display: grid;
  gap: 14px;
  width: min(100%, 452px);
  padding: 18px;
  border-radius: 36px;
}

.portrait-frame {
  display: grid;
  gap: 14px;
  width: 100%;
  padding: 12px;
  border-radius: 30px;
}

.portrait-photo {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
  border-radius: 22px;
}

.portrait-badge {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  display: grid;
  align-content: center;
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px;
  box-shadow:
    0 14px 26px rgba(47, 42, 44, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.portrait-support {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: stretch;
}

.portrait-float-card {
  display: none;
}

.portrait-meta {
  width: min(100%, 452px);
}

.portrait-badge {
  order: 1;
}

.portrait-badge strong {
  font-size: 0.88rem;
  line-height: 1.36;
}

@media (max-width: 1100px) {
  .portrait-card {
    padding-right: 0;
  }

  .portrait-stage,
  .portrait-meta {
    width: min(100%, 460px);
  }
}

@media (max-width: 760px) {
  .portrait-stage {
    width: 100%;
    padding: 14px;
    border-radius: 26px;
  }

  .portrait-frame {
    gap: 12px;
    padding: 10px;
    border-radius: 22px;
  }

  .portrait-photo {
    border-radius: 18px;
  }

  .portrait-badge {
    padding: 12px 14px;
    border-radius: 16px;
  }

  .portrait-support {
    gap: 10px;
  }

  .portrait-float-card {
    min-width: 118px;
    padding: 11px 13px;
    border-radius: 16px;
  }
}

/* Custom About image balance preservation after SEO and content updates. */
.about-stage-frame {
  aspect-ratio: 1 / 0.82;
}

.about-stage-image {
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 68%;
}

@media (max-width: 980px) {
  .about-stage-frame {
    aspect-ratio: 1 / 0.86;
  }
}

@media (max-width: 760px) {
  .about-stage-frame {
    aspect-ratio: 1 / 0.92;
  }
}

@font-face {
  font-family: "Pegiblue Signature";
  src: url("Pegiblue-JpB7n.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: var(--text);
  background: #ffffff;
}

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

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

.container {
  width: min(var(--container), calc(100% - 20px));
  margin: 0 auto;
}

.section-anchor {
  display: block;
  height: 0;
  overflow: hidden;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #f1e3e5;
  box-shadow: 0 10px 30px rgba(47, 42, 44, 0.05);
}

.header-shell {
  display: grid;
  gap: 12px;
  padding: 10px 0 14px;
}

.header-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.header-navrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  border-top: 1px solid #f4e7e8;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}

.site-nav a,
h1,
h2,
h3,
.button {
  font-family: "Barlow", sans-serif;
}

.brand-logo {
  width: clamp(132px, 15vw, 198px);
  height: auto;
}

.header-meta {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 12px;
}

.meta-card {
  display: grid;
  gap: 4px;
  text-align: left;
  min-width: 168px;
  padding: 10px 14px;
  border: 1px solid #f2e3e5;
  border-radius: 14px;
  background: linear-gradient(180deg, #fffefe, #fff8f8);
}

.meta-label {
  font-family: "Barlow", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy-dark);
  letter-spacing: 0.12em;
}

.meta-card a,
.meta-card span:last-child {
  color: var(--hero-blue);
  font-size: 0.92rem;
  font-weight: 700;
}

.meta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.meta-link-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
}

.phone-link {
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: clamp(1.45rem, 2.1vw, 2.2rem);
  font-weight: 800;
  line-height: 1;
  align-self: center;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
  color: var(--navy-dark);
}

.site-nav a {
  position: relative;
  padding: 4px 0;
  font-size: 0.96rem;
}

.site-nav a + a::before {
  content: "|";
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  color: #b9a9ac;
  font-weight: 500;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--navy-dark);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.menu-toggle svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, #b92d32, #cf3134);
  color: #ffffff;
  font-family: "Barlow", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(207, 49, 52, 0.18);
}

/* Custom home page hero shell, image stage and overlay typography. */
.hero-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at left top, rgba(207, 49, 52, 0.06), transparent 24%),
    linear-gradient(180deg, #fffdfd, #faf5f5);
  padding: 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(207, 49, 52, 0.08) 1px, transparent 1.2px);
  background-size: 14px 14px;
  opacity: 0.18;
  pointer-events: none;
}

.hero-shell {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

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

.button.primary {
  background: var(--gold);
  color: #ffffff;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  background: transparent;
}

.light-button {
  width: 100%;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  min-height: auto;
  aspect-ratio: 1773 / 738;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(249, 249, 249, 0.95)),
    repeating-linear-gradient(
      0deg,
      rgba(207, 49, 52, 0.04) 0,
      rgba(207, 49, 52, 0.04) 2px,
      transparent 2px,
      transparent 6px
    );
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(150deg, transparent 45%, rgba(255, 255, 255, 0.5) 45%, rgba(255, 255, 255, 0.18) 56%, transparent 56%),
    linear-gradient(200deg, transparent 58%, rgba(207, 49, 52, 0.06) 58%, transparent 76%);
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(63, 58, 61, 0.05), transparent 30%);
}

.hero-image {
  position: absolute;
  inset: 0;
  transform: none;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.hero-image-overlay {
  position: absolute;
  inset: 52px 0 auto;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0 40px;
  max-width: 100%;
  text-align: center;
}

.hero-image-overlay h1,
.hero-image-overlay h2 {
  margin: 0;
}

.hero-image-overlay h1 span {
  display: block;
}

.hero-image-overlay h1 span:first-child,
.hero-image-overlay h1 span:last-child {
  white-space: nowrap;
}

.hero-brandline,
.hero-kicker,
.hero-subcopy,
.hero-since {
  margin: 0;
}

.hero-brandline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 6px;
  color: #c52f33;
  font-family: "Barlow", sans-serif;
  font-size: clamp(0.92rem, 1vw, 1.04rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-synthesis: none;
}

.hero-brandline::before,
.hero-brandline::after {
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(184, 63, 59, 0.7);
  border-radius: 999px;
}

.hero-brandline-accent {
  color: inherit;
}

.hero-kicker {
  margin-bottom: 14px;
  color: #5e85ae;
  font-family: "Barlow", sans-serif;
  font-size: clamp(0.8rem, 1vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-synthesis: none;
}

.hero-image-overlay h1 {
  max-width: 15ch;
  color: #1f1b1d;
  font-family: "SF Pro Display Medium", "Barlow", sans-serif;
  font-size: clamp(2rem, 2.66vw, 2.86rem);
  line-height: 0.96;
  margin: 0 auto 8px;
  font-weight: 500;
  letter-spacing: -0.042em;
  text-transform: none;
  text-shadow: none;
  white-space: normal;
  text-wrap: balance;
  font-synthesis: none;
}

.hero-image-overlay h2 {
  max-width: 42ch;
  margin: 0 auto;
  color: #5f585b;
  font-family: "Barlow", sans-serif;
  font-size: clamp(0.98rem, 1.02vw, 1.1rem);
  line-height: 1.38;
  font-weight: 500;
  letter-spacing: 0.015em;
  text-transform: none;
  white-space: normal;
  text-wrap: balance;
  font-synthesis: none;
}

.hero-subcopy {
  max-width: 50ch;
  margin-top: 14px;
  color: #5a6470;
  font-family: "Barlow", sans-serif;
  font-size: clamp(0.96rem, 1.1vw, 1.08rem);
  line-height: 1.6;
  font-weight: 600;
  font-synthesis: none;
}

.hero-since {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 18px;
  padding: 0 18px;
  border: 1px solid rgba(207, 49, 52, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--hero-blue);
  font-family: "Barlow", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-synthesis: none;
}

.hero-brochure {
  position: fixed;
  left: 8px;
  top: 50%;
  z-index: 2;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  border-radius: 8px 8px 0 0;
  padding: 18px 10px;
  background: var(--hero-blue);
  color: #ffffff;
  font-family: "Barlow", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-actions-rail {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: grid;
  gap: 12px;
}

.hero-fab {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--hero-blue);
  color: #ffffff;
  text-decoration: none;
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(207, 49, 52, 0.24);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.hero-fab svg {
  width: 28px;
  height: 28px;
}

.hero-fab:focus-visible {
  outline: 3px solid rgba(184, 63, 59, 0.22);
  outline-offset: 3px;
}

.trust-band {
  position: relative;
  z-index: 3;
  margin-top: -42px;
  background: transparent;
}

.trust-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 0.8fr 1.32fr 1.18fr 1.28fr 1.9fr;
  gap: 0;
  align-items: stretch;
  border-radius: 26px;
  border: 1px solid #efe2e4;
  background: rgba(255, 255, 255, 0.97);
  box-shadow:
    0 24px 50px rgba(47, 42, 44, 0.1),
    0 6px 18px rgba(47, 42, 44, 0.05);
  overflow: hidden;
}

.trust-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #cf3134, #f16c71 42%, #cf3134 100%);
  z-index: 1;
}

.trust-highlight,
.trust-block {
  position: relative;
  padding: 14px 14px;
  border-right: 1px solid #f0e3e5;
}

.trust-card > :last-child {
  border-right: 0;
}

.trust-highlight {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(207, 49, 52, 0.08), transparent 42%),
    linear-gradient(180deg, #fffdfd, #fff7f8);
}

.trust-highlight strong {
  color: var(--hero-blue);
  font-family: "Barlow", sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 3.1rem);
  line-height: 0.9;
  margin-bottom: 4px;
}

.trust-highlight span {
  max-width: 10ch;
  color: var(--navy-dark);
  font-family: "Barlow", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.18;
}

.trust-title {
  margin: 0 0 7px;
  color: var(--hero-blue);
  font-family: "Barlow", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-inline-grid,
.partner-grid {
  display: grid;
  gap: 6px;
}

.franchise-block .trust-inline-grid {
  gap: 7px;
}

.trust-inline-grid article,
.partner-grid article {
  display: grid;
  gap: 2px;
  padding: 8px 10px;
  border: 1px solid #f4e7e9;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #fff9fa);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.trust-inline-grid strong,
.partner-grid strong,
.standard-card strong {
  display: block;
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 0.84rem;
  margin-bottom: 0;
}

.trust-inline-grid span,
.partner-grid span,
.standard-card span,
.product-card li,
.feature-card p {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.3;
}

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

.system-integrator-block .trust-inline-grid {
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 4px;
}

.system-integrator-block .trust-inline-grid article {
  min-height: 0;
  padding: 11px 12px !important;
  border-radius: 16px;
  border: 1px solid #ebe4e5;
  background: #ffffff !important;
  box-shadow:
    0 8px 18px rgba(47, 42, 44, 0.04);
}

.system-integrator-block .trust-inline-grid article:hover {
  transform: translateY(-1px);
  border-color: #ddd2d4;
  box-shadow: 0 14px 26px rgba(47, 42, 44, 0.06);
}

.system-integrator-schneider,
.system-integrator-cg {
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: 10px;
}

.system-integrator-schneider-mark,
.system-integrator-cg-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 5px;
  border-radius: 12px;
  border: 1px solid #eee7e8;
  background: #fbf8f9;
}

.system-integrator-schneider-copy,
.system-integrator-cg-copy {
  display: grid;
  align-content: start;
  gap: 3px;
}

.system-integrator-schneider-copy strong,
.system-integrator-cg-copy strong {
  color: #8a5f65;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.system-integrator-schneider-copy span,
.system-integrator-cg-copy span {
  color: #223043;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.28;
}

.system-integrator-schneider-mark img {
  display: block;
  width: 31px;
  height: auto;
  border-radius: 2%;
}

.system-integrator-cg-mark img {
  display: block;
  width: 29px;
  height: auto;
  border-radius: 2%;
}

.system-integrator-schneider-copy small,
.system-integrator-cg-copy small {
  margin-top: 2px;
  color: #7f8fa7;
  font-size: 0.62rem;
  font-weight: 500;
  line-height: 1.25;
}

.system-integrator-schneider-copy small {
  color: #879099;
}

@media (max-width: 767px) {
  .system-integrator-block .trust-inline-grid {
    grid-template-columns: 1fr;
  }
}

.section-space {
  padding: 86px 0;
}

.section-grid,
.leadership-grid,
.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.section-copy h2,
.section-heading h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.section-copy p {
  color: var(--muted);
  margin: 0 0 16px;
}

.about-section {
  background:
    linear-gradient(180deg, #f8f2f3, #fffdfd 38%, #ffffff);
}

.about-redesign {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: 38px;
  align-items: start;
}

.about-visual-column {
  display: grid;
  gap: 18px;
}

.about-visual-stage {
  position: relative;
  padding: 12px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, #ffffff, #fff8f8),
    radial-gradient(circle at top left, rgba(207, 49, 52, 0.05), transparent 42%);
  border: 1px solid #eadcdf;
  box-shadow:
    0 22px 46px rgba(47, 42, 44, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.about-stage-label {
  position: absolute;
  left: 32px;
  top: 30px;
  z-index: 1;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #b83e3a;
  font-family: "Barlow", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-stage-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid #eadcdf;
  box-shadow: 0 16px 34px rgba(47, 42, 44, 0.08);
}

.about-stage-image {
  width: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-timeline-card {
  display: grid;
  gap: 18px;
  padding: 24px 24px 22px;
  border-radius: 24px;
  border: 1px solid #eadcdf;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 248, 0.98)),
    radial-gradient(circle at top right, rgba(207, 49, 52, 0.06), transparent 38%);
  box-shadow:
    0 22px 46px rgba(47, 42, 44, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.about-timeline-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.34;
}

.about-capability-card {
  overflow: visible;
}

.about-capability-card .capability-timeline-head {
  max-width: none;
  margin: 0;
  text-align: left;
}

.about-capability-card .capability-timeline-head .section-tag {
  margin-bottom: 10px;
}

.about-capability-card .capability-timeline-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.24;
  letter-spacing: -0.02em;
}

.about-capability-card .capability-timeline-marquee {
  overflow: visible;
  padding: 8px 0 0;
  mask-image: none;
  -webkit-mask-image: none;
}

.about-capability-card .capability-timeline-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  transform: none;
  will-change: auto;
  animation: none !important;
  transition: none !important;
}

.about-capability-card .capability-timeline-track::before {
  display: none;
}

.about-capability-card .capability-timeline-marquee.is-marquee,
.about-capability-card .capability-timeline-track.is-marquee {
  animation: none !important;
  transform: none !important;
}

.about-capability-card .capability-timeline-card {
  flex: none;
  width: 100%;
  min-width: 0;
  padding: 16px 15px 14px;
  border-radius: 18px;
  gap: 8px;
  transform: none;
  animation: none !important;
  transition: none !important;
  scroll-snap-align: unset;
}

.about-capability-card .capability-timeline-card:hover {
  transform: none;
  box-shadow: inherit;
}

.about-capability-card .capability-timeline-marquee {
  animation: none !important;
  transition: none !important;
}

.about-capability-card .capability-timeline-card::before {
  width: 3px;
  border-radius: 18px 0 0 18px;
}

.about-capability-card .capability-timeline-year {
  min-height: 28px;
  padding: 4px 9px;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
}

.about-capability-card .capability-timeline-card h3 {
  font-size: 0.92rem;
  line-height: 1.22;
}

.about-capability-card .capability-timeline-card p {
  font-size: 0.76rem;
  line-height: 1.42;
}

.about-timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.about-timeline-grid div {
  display: grid;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid #efdee1;
}

.about-timeline-grid strong {
  color: var(--hero-blue);
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
}

.about-timeline-grid span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.38;
}

.about-story-panel {
  position: relative;
  padding: 30px 30px 28px 34px;
  border-radius: 30px;
  border: 1px solid #eadcdf;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 248, 248, 0.99)),
    radial-gradient(circle at top right, rgba(207, 49, 52, 0.06), transparent 28%);
  box-shadow:
    0 24px 52px rgba(47, 42, 44, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  text-align: left;
}

.about-story-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #cf3134, rgba(207, 49, 52, 0.22));
  box-shadow: 0 0 0 6px rgba(207, 49, 52, 0.06);
}

.about-story-panel .section-tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  margin-bottom: 14px;
  color: #b83e3a;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff8f8, #ffffff);
  border: 1px solid #efe0e3;
  box-shadow:
    0 14px 28px rgba(47, 42, 44, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.about-story-panel h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(2.2rem, 3.8vw, 3.25rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.about-story-panel h2 span {
  display: block;
}

.about-story-panel p {
  margin: 0;
  max-width: 60ch;
  color: #5f585b;
  font-size: 0.99rem;
  line-height: 1.68;
}

.about-story-panel p + p {
  margin-top: 10px;
}

.about-editorial-lead {
  color: var(--navy);
  font-size: 1.04rem;
  line-height: 1.72;
}

.about-capability-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.about-capability-grid article {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, #ffffff, #fff9fa),
    radial-gradient(circle at top left, rgba(207, 49, 52, 0.05), transparent 38%);
  border: 1px solid #efdfdf;
  box-shadow:
    0 18px 36px rgba(47, 42, 44, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.about-card-label {
  color: var(--hero-blue);
  font-family: "Barlow", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-capability-grid strong {
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 1.06rem;
  line-height: 1.34;
}

.about-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.about-proof-strip article {
  display: grid;
  gap: 7px;
  padding: 16px 16px 15px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, #fffefe, #fff7f8),
    radial-gradient(circle at top left, rgba(207, 49, 52, 0.045), transparent 42%);
  border: 1px solid #ebdde0;
  box-shadow:
    0 14px 28px rgba(47, 42, 44, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.about-proof-strip strong {
  color: var(--hero-blue);
  font-family: "Barlow", sans-serif;
  font-size: 1.22rem;
  line-height: 1.08;
}

.about-proof-strip span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.about-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 42px;
  align-items: center;
}

.about-editorial-copy {
  position: relative;
  padding: 20px 0 20px 30px;
  max-width: 760px;
  text-align: left;
}

.about-editorial-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #cf3134, rgba(207, 49, 52, 0.24));
  box-shadow: 0 0 0 6px rgba(207, 49, 52, 0.06);
}

.about-editorial-copy h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(2.35rem, 4.1vw, 3.45rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.about-editorial-copy h2 span {
  display: block;
  white-space: nowrap;
}

.about-editorial-copy .section-tag {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 20px;
  margin-bottom: 16px;
  color: #b83e3a;
  font-size: 1.38rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff8f8, #ffffff);
  border: 1px solid #efe0e3;
  box-shadow:
    0 14px 28px rgba(47, 42, 44, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.about-editorial-copy p {
  max-width: 62ch;
  margin: 0;
  color: #5f585b;
  font-size: 1.01rem;
  line-height: 1.72;
}

.about-editorial-copy p + p {
  margin-top: 10px;
}

.about-editorial-lead {
  color: var(--navy);
  font-size: 1.04rem;
  line-height: 1.74;
}

.about-editorial-facts {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.about-editorial-facts article {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, #ffffff, #fff9fa),
    radial-gradient(circle at top left, rgba(207, 49, 52, 0.05), transparent 38%);
  border: 1px solid #eddfe2;
  box-shadow:
    0 18px 34px rgba(47, 42, 44, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  text-align: left;
}

.fact-label {
  color: var(--hero-blue);
  font-family: "Barlow", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-editorial-facts strong {
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 1.08rem;
  line-height: 1.34;
}

.about-editorial-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.about-editorial-metrics article {
  display: grid;
  gap: 7px;
  padding: 16px 16px 15px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, #fffefe, #fff7f8),
    radial-gradient(circle at top left, rgba(207, 49, 52, 0.045), transparent 42%);
  border: 1px solid #ebdde0;
  box-shadow:
    0 14px 28px rgba(47, 42, 44, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  text-align: left;
}

.about-editorial-metrics strong {
  color: var(--hero-blue);
  font-family: "Barlow", sans-serif;
  font-size: 1.26rem;
  line-height: 1.08;
}

.about-editorial-metrics span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.about-editorial-visual {
  position: relative;
  padding-bottom: 0;
}

.about-editorial-frame {
  margin: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid #e8dade;
  box-shadow:
    0 30px 60px rgba(47, 42, 44, 0.11),
    0 10px 22px rgba(47, 42, 44, 0.04);
}

.about-editorial-image {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 510px;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.about-editorial-panel {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 248, 0.98)),
    radial-gradient(circle at top right, rgba(207, 49, 52, 0.05), transparent 42%);
  border: 1px solid #ebdde0;
  box-shadow:
    0 24px 46px rgba(47, 42, 44, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  text-align: left;
}

.about-panel-tag {
  color: var(--hero-blue);
  font-family: "Barlow", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-editorial-panel h3 {
  max-width: 24ch;
  margin: 8px 0 14px;
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 1.06rem;
  line-height: 1.28;
  font-weight: 700;
}

.about-panel-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about-panel-timeline div {
  display: grid;
  gap: 5px;
  padding-top: 10px;
  border-top: 1px solid #f0e1e4;
}

.about-panel-timeline strong {
  color: var(--hero-blue);
  font-family: "Barlow", sans-serif;
  font-size: 1.03rem;
}

.about-panel-timeline span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.34;
}

.vision-section {
  background:
    linear-gradient(180deg, #ffffff, #fbf6f6 46%, #ffffff);
}

.vision-shell {
  display: grid;
  grid-template-columns: minmax(420px, 1.06fr) minmax(0, 0.94fr);
  gap: 42px;
  align-items: start;
}

.vision-visual {
  position: relative;
  padding-bottom: 0;
  display: grid;
  gap: 18px;
}

.vision-frame {
  margin: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid #e8dade;
  box-shadow:
    0 30px 60px rgba(47, 42, 44, 0.11),
    0 10px 22px rgba(47, 42, 44, 0.04);
}

.vision-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  max-height: 620px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.vision-note {
  position: relative;
  right: auto;
  bottom: auto;
  max-width: none;
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 248, 0.98)),
    radial-gradient(circle at top right, rgba(207, 49, 52, 0.05), transparent 42%);
  border: 1px solid #ebdde0;
  box-shadow:
    0 22px 42px rgba(47, 42, 44, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.vision-note-label {
  color: var(--hero-blue);
  font-family: "Barlow", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vision-note strong {
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  line-height: 1.38;
}

.vision-copy {
  position: relative;
  padding: 10px 0 20px 30px;
  text-align: left;
}

.vision-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #cf3134, rgba(207, 49, 52, 0.24));
  box-shadow: 0 0 0 6px rgba(207, 49, 52, 0.06);
}

.vision-copy .section-tag {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 20px;
  margin-bottom: 16px;
  color: #b83e3a;
  font-size: 1.38rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff8f8, #ffffff);
  border: 1px solid #efe0e3;
  box-shadow:
    0 14px 28px rgba(47, 42, 44, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.vision-copy h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(2.02rem, 3.15vw, 2.72rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.vision-copy h2 span {
  display: block;
  white-space: normal;
  max-width: 100%;
}

.vision-copy p {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.66;
}

.vision-copy p + p {
  margin-top: 10px;
}

.vision-lead {
  color: var(--navy);
  font-size: 1.04rem;
  line-height: 1.74;
}

.vision-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.vision-card {
  display: grid;
  gap: 8px;
  padding: 20px 20px 18px;
  border-radius: 20px;
  border: 1px solid #eadcdf;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 248, 0.98)),
    radial-gradient(circle at top right, rgba(207, 49, 52, 0.06), transparent 38%);
  box-shadow:
    0 22px 44px rgba(47, 42, 44, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  text-align: left;
}

.vision-label {
  display: inline-flex;
  color: var(--hero-blue);
  font-family: "Barlow", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vision-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1.24;
}

.vision-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.vision-card.mission-card {
  background:
    linear-gradient(180deg, #fffdfd, #fff6f7),
    radial-gradient(circle at top left, rgba(207, 49, 52, 0.07), transparent 42%);
}

.about-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: center;
}

.about-stage {
  position: relative;
  padding: 18px 18px 86px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, #3d3739, #2f2a2c 62%, #4b2f33 100%);
  box-shadow: 0 24px 60px rgba(47, 42, 44, 0.18);
}

.about-stage::before {
  content: "";
  position: absolute;
  inset: 22px 22px auto auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.about-stage-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.about-stage-image {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
}

.about-stage-badge {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 24px;
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(16, 24, 40, 0.16);
}

.about-stage-label {
  color: var(--hero-blue);
  font-family: "Barlow", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-stage-badge strong {
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
}

.about-story {
  padding: 8px 0;
}

.about-story .section-tag {
  margin-bottom: 12px;
}

.about-story h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  line-height: 1.04;
}

.about-story-lead {
  color: var(--navy);
  font-size: 1.06rem;
  line-height: 1.8;
}

.about-story-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.about-story-card {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-left: 4px solid var(--hero-blue);
  border-radius: 0 16px 16px 0;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(47, 42, 44, 0.06);
}

.story-label {
  color: var(--hero-blue);
  font-family: "Barlow", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-story-card strong {
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 1.04rem;
  line-height: 1.45;
}

.about-story-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.about-story-metrics article {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid #ecdfe2;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #fff7f8);
}

.about-story-metrics strong {
  color: var(--hero-blue);
  font-family: "Barlow", sans-serif;
  font-size: 1.14rem;
  line-height: 1.15;
}

.about-story-metrics span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.about-pro {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}

.about-pro-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid #eadcdf;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(47, 42, 44, 0.08);
}

.about-pro-image {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.about-pro-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: grid;
  gap: 4px;
  min-width: 180px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 30px rgba(47, 42, 44, 0.12);
}

.about-pro-badge span {
  color: var(--hero-blue);
  font-family: "Barlow", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-pro-badge strong {
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 1.05rem;
}

.about-pro-card {
  padding: 30px;
  border: 1px solid #eadcdf;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 248, 0.98)),
    radial-gradient(circle at top right, rgba(207, 49, 52, 0.06), transparent 28%);
  box-shadow: 0 18px 40px rgba(47, 42, 44, 0.08);
}

.about-pro-card .section-tag {
  margin-bottom: 10px;
}

.about-pro-card h2 {
  margin: 0 0 16px;
}

.about-pro-lead {
  color: var(--navy);
  font-size: 1.04rem;
  line-height: 1.75;
}

.about-pro-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.about-pro-stats article,
.about-pro-notes article {
  border: 1px solid #efdfdf;
  border-radius: 18px;
  background: #ffffff;
}

.about-pro-stats article {
  display: grid;
  gap: 6px;
  padding: 16px;
}

.about-pro-stats strong {
  color: var(--hero-blue);
  font-family: "Barlow", sans-serif;
  font-size: 1.15rem;
  line-height: 1.15;
}

.about-pro-stats span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.about-pro-notes {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.about-pro-notes article {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
}

.about-pro-notes strong {
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
}

.about-pro-notes span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.about-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: stretch;
}

.about-photo-frame,
.about-panel {
  border: 1px solid #eadcdf;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(47, 42, 44, 0.08);
}

.about-photo-frame {
  margin: 0;
  overflow: hidden;
}

.about-photo {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.about-photo-caption {
  display: grid;
  gap: 8px;
  padding: 14px 18px 16px;
  border-top: 1px solid #f1e3e5;
  background: linear-gradient(180deg, #ffffff, #fff8f8);
}

.caption-label {
  color: var(--hero-blue);
  font-family: "Barlow", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-photo-caption strong {
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 0.95rem;
  line-height: 1.32;
}

.about-panel {
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 248, 0.98)),
    radial-gradient(circle at top right, rgba(207, 49, 52, 0.06), transparent 28%);
}

.about-panel .section-tag {
  margin-bottom: 12px;
}

.about-panel h2 {
  margin: 0 0 16px;
}

.about-lead {
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.about-summary-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid #efdfdf;
  border-radius: 18px;
  background: #ffffff;
}

.summary-label {
  color: var(--hero-blue);
  font-family: "Barlow", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-summary-card strong {
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 1.02rem;
  line-height: 1.35;
}

.about-summary-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.about-timeline {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid #f1e3e5;
}

.timeline-item strong {
  color: var(--hero-blue);
  font-family: "Barlow", sans-serif;
  font-size: 1.15rem;
}

.timeline-item span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.about-metrics article {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fffefe, #fff6f7);
  border: 1px solid #efdfdf;
}

.about-metrics strong {
  color: var(--hero-blue);
  font-family: "Barlow", sans-serif;
  font-size: 1.18rem;
  line-height: 1.15;
}

.about-metrics span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.feature-stack {
  display: grid;
  gap: 18px;
}

.feature-card,
.standard-card,
.product-card,
.contact-card {
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 26px;
  border-top: 4px solid var(--gold);
}

.feature-card h3,
.product-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.55rem;
}

.leadership-section {
  padding: 86px 0;
  background:
    radial-gradient(circle at top left, rgba(207, 49, 52, 0.08), transparent 22%),
    radial-gradient(circle at bottom right, rgba(47, 42, 44, 0.05), transparent 26%),
    linear-gradient(180deg, #fbf5f5, #ffffff 50%, #fcf8f8);
}

.leadership-grid {
  grid-template-columns: minmax(0, 1.16fr) minmax(220px, 0.84fr);
  gap: 42px;
  align-items: stretch;
}

.founder-copy {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0;
  padding: 38px 38px 34px;
  border-radius: 34px;
  border: 1px solid #ebdbde;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(255, 248, 248, 0.99)),
    radial-gradient(circle at top right, rgba(207, 49, 52, 0.07), transparent 34%);
  box-shadow:
    0 28px 64px rgba(47, 42, 44, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  overflow: hidden;
}

.founder-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  bottom: 26px;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, #cf3134, rgba(207, 49, 52, 0.16));
  box-shadow: 0 0 0 7px rgba(207, 49, 52, 0.055);
}

.founder-copy .section-tag {
  margin-bottom: 14px;
  background: #b83f3b;
  border-color: #b83f3b;
  box-shadow:
    0 12px 22px rgba(184, 63, 59, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.founder-copy > .founder-eyebrow,
.founder-copy > h2,
.founder-copy > .founder-kicker,
.founder-copy > .founder-message-card,
.founder-copy > .founder-principles,
.founder-copy > .founder-signoff {
  margin-left: 10px;
}

.founder-copy h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(2.7rem, 4.4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.founder-copy h2 span {
  display: block;
}

.founder-eyebrow {
  margin: 0 0 12px;
  color: #b83e3a;
  font-family: "Barlow", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.founder-kicker {
  margin: 0 0 22px;
  color: #534c50;
  font-family: "Barlow", sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.68;
  letter-spacing: 0.01em;
  max-width: 52ch;
}

.founder-message-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 24px 24px 22px 28px;
  margin-bottom: 20px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, #ffffff, #fff9fa),
    radial-gradient(circle at top left, rgba(207, 49, 52, 0.05), transparent 38%);
  border: 1px solid #efe0e2;
  box-shadow:
    0 20px 40px rgba(47, 42, 44, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.founder-message-card::before {
  content: "\"";
  position: absolute;
  right: 18px;
  top: 6px;
  color: rgba(184, 62, 58, 0.12);
  font-family: "Barlow", sans-serif;
  font-size: 5.4rem;
  line-height: 1;
  font-weight: 700;
}

.founder-message-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(207, 49, 52, 0.8), rgba(207, 49, 52, 0.18));
}

.founder-message-card p {
  position: relative;
  margin: 0;
  color: #5a5357;
  font-size: 1.04rem;
  line-height: 1.78;
  letter-spacing: 0.005em;
  text-wrap: pretty;
}

.founder-message-layout p:first-child {
  color: #4d4549;
  font-weight: 500;
}

.founder-message-layout p:last-child {
  color: #676065;
}

.founder-message-layout {
  display: grid;
  gap: 18px;
  align-items: start;
}

.founder-inline-profile {
  display: grid;
  gap: 14px;
  margin: 2px 0 4px;
  width: 100%;
  justify-self: stretch;
  padding: 12px;
  border-radius: 26px;
  border: 1px solid #ebdcdf;
  background:
    linear-gradient(180deg, #ffffff, #fff7f8),
    radial-gradient(circle at top left, rgba(207, 49, 52, 0.06), transparent 36%);
  box-shadow:
    0 20px 34px rgba(47, 42, 44, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.founder-inline-profile img {
  width: 100%;
  height: auto;
  aspect-ratio: 11 / 10;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 20px;
}

.founder-inline-caption {
  display: grid;
  gap: 6px;
  padding: 2px 4px 0;
  color: #5f585c;
  text-align: left;
}

.founder-inline-caption strong {
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.2;
}

.founder-inline-role {
  color: #b83e3a;
  font-family: "Barlow", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.founder-inline-bio {
  margin: 0;
  color: #151515;
  font-size: 0.98rem;
  line-height: 1.58;
  letter-spacing: 0.005em;
  max-width: 34ch;
}

.founder-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
  justify-content: center;
}

.founder-principles span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid #eddfe1;
  background: linear-gradient(180deg, #fffefe, #fff6f7);
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 20px rgba(47, 42, 44, 0.04);
}

.founder-signoff {
  display: grid;
  gap: 4px;
  margin-top: 4px;
  justify-items: center;
  text-align: center;
}

.founder-signoff strong {
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 1.16rem;
}

.founder-signoff .founder-signature-name {
  color: #111111;
  font-family: "Pegiblue Signature", cursive;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
}

.founder-signoff span {
  color: #6f686c;
  font-size: 0.98rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.founder-side-profile {
  display: grid;
  align-content: start;
  gap: 22px;
}

.founder-side-frame {
  margin: 0;
  display: grid;
  gap: 16px;
  padding: 14px;
  border-radius: 30px;
  border: 1px solid #ebdcdf;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(255, 248, 248, 0.99)),
    radial-gradient(circle at top left, rgba(207, 49, 52, 0.06), transparent 40%);
  box-shadow:
    0 28px 60px rgba(47, 42, 44, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.founder-side-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 22px;
}

.founder-side-caption {
  display: grid;
  gap: 6px;
  padding: 2px 6px 4px;
  text-align: left;
}

.founder-side-caption strong {
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.2;
}

.founder-side-role {
  color: #b83e3a;
  font-family: "Barlow", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.founder-side-bio {
  margin: 0;
  color: #161616;
  font-size: 0.98rem;
  line-height: 1.6;
  letter-spacing: 0.005em;
}

.portrait-card {
  display: grid;
  align-content: start;
  gap: 18px;
  justify-items: center;
}

.portrait-frame {
  margin: 0;
  position: relative;
  width: min(100%, 540px);
  overflow: hidden;
  padding: 12px;
  border-radius: 34px;
  border: 1px solid #ebdcdf;
  background:
    linear-gradient(180deg, #ffffff, #fff7f8),
    radial-gradient(circle at top left, rgba(207, 49, 52, 0.06), transparent 36%);
  box-shadow:
    0 28px 62px rgba(47, 42, 44, 0.12),
    0 12px 24px rgba(47, 42, 44, 0.05);
}

.portrait-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 26px;
}

.portrait-badge {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 248, 0.94)),
    radial-gradient(circle at top right, rgba(207, 49, 52, 0.07), transparent 40%);
  border: 1px solid rgba(235, 221, 223, 0.92);
  box-shadow:
    0 18px 32px rgba(47, 42, 44, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.portrait-badge span {
  color: #b83e3a;
  font-family: "Barlow", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portrait-badge strong {
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  line-height: 1.36;
}

.portrait-meta {
  display: grid;
  gap: 5px;
  width: min(100%, 430px);
  padding: 0 8px;
  justify-items: center;
  text-align: center;
}

.portrait-meta strong {
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 1.18rem;
}

.portrait-meta .portrait-name {
  color: #111111;
  font-family: "Barlow", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.2;
}

.portrait-meta span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .capability-summary-card {
    padding: 30px 26px;
    border-radius: 24px;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .founder-copy {
    padding: 28px 24px 24px;
    border-radius: 26px;
  }

  .founder-copy > .founder-eyebrow,
  .founder-copy > h2,
  .founder-copy > .founder-kicker,
  .founder-copy > .founder-message-card,
  .founder-copy > .founder-principles,
  .founder-copy > .founder-signoff {
    margin-left: 8px;
  }

  .founder-copy h2 {
    font-size: clamp(2.35rem, 6vw, 3.2rem);
  }

  .founder-message-card {
    padding: 20px 18px 18px 22px;
  }

  .founder-message-layout {
    gap: 18px;
  }

  .founder-side-profile {
    max-width: 440px;
  }

  .portrait-frame,
  .portrait-meta {
    width: min(100%, 420px);
  }
}

@media (max-width: 760px) {
  .capability-summary-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .capability-summary-card h2 {
    font-size: clamp(1.48rem, 7vw, 1.92rem);
  }

  .founder-copy {
    padding: 24px 20px 22px;
  }

  .founder-copy > .founder-eyebrow,
  .founder-copy > h2,
  .founder-copy > .founder-kicker,
  .founder-copy > .founder-message-card,
  .founder-copy > .founder-principles,
  .founder-copy > .founder-signoff {
    margin-left: 6px;
  }

  .founder-copy::before {
    top: 22px;
    bottom: 22px;
  }

  .founder-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .founder-kicker {
    font-size: 1rem;
  }

  .founder-message-card {
    padding: 18px 16px 16px 20px;
    border-radius: 20px;
  }

  .founder-message-card::before {
    font-size: 4rem;
    right: 12px;
  }

  .founder-message-layout {
    gap: 14px;
  }

  .founder-inline-profile {
    width: 100%;
  }

  .founder-side-frame {
    padding: 12px;
    border-radius: 24px;
  }

  .founder-side-photo {
    border-radius: 18px;
  }

  .founder-principles {
    gap: 10px;
  }

  .founder-principles span {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.84rem;
  }

  .portrait-frame,
  .portrait-meta {
    width: 100%;
  }

  .portrait-frame {
    padding: 10px;
    border-radius: 26px;
  }

  .portrait-photo {
    border-radius: 20px;
  }

  .portrait-badge {
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 14px 16px;
    border-radius: 18px;
  }

  .portrait-badge strong {
    font-size: 0.92rem;
  }
}

.signature {
  font-weight: 700;
  color: var(--navy);
}

.standards-section {
  background:
    linear-gradient(180deg, #ffffff, #fff8f7);
}

.standards-shell {
  display: grid;
  grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  align-items: center;
  gap: 34px;
}

.standards-copy {
  max-width: 340px;
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  align-self: center;
}

.standards-copy .section-tag {
  margin-bottom: 18px;
  color: #b83e3a;
}

.standards-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.standards-copy h2 span {
  display: block;
}

.standards-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.standards-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  color: #b83e3a;
  font-family: "Barlow", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.certificate-marquee {
  position: relative;
  overflow: hidden;
  padding: 18px 0;
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.certificate-marquee::before,
.certificate-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 70px;
  z-index: 2;
  pointer-events: none;
}

.certificate-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 248, 247, 1), rgba(255, 248, 247, 0));
}

.certificate-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 248, 247, 1), rgba(255, 248, 247, 0));
}

.certificate-track {
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: max-content;
  animation: certificate-marquee-scroll 34s linear infinite;
}

.certificate-marquee:hover .certificate-track {
  animation-play-state: paused;
}

.certificate-card {
  width: 232px;
  flex: 0 0 232px;
  border-radius: 22px;
  border: 1px solid #eadcdf;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 247, 248, 0.99)),
    radial-gradient(circle at top right, rgba(207, 49, 52, 0.06), transparent 38%);
  box-shadow:
    0 18px 34px rgba(47, 42, 44, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.certificate-card-link {
  display: grid;
  gap: 14px;
  height: 100%;
  padding: 16px;
  color: inherit;
}

.certificate-preview {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #ebdde0;
  background: #ffffff;
  box-shadow:
    0 10px 20px rgba(47, 42, 44, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.certificate-preview img {
  width: 100%;
  aspect-ratio: 0.78 / 1;
  object-fit: cover;
  object-position: top center;
  display: block;
  cursor: zoom-in;
}

.certificate-card-featured {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 244, 245, 0.99)),
    radial-gradient(circle at top right, rgba(184, 62, 58, 0.1), transparent 36%);
}

.certificate-card-udyam .certificate-preview {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(251, 247, 245, 1));
}

.certificate-card-udyam .certificate-preview img {
  object-fit: contain;
  object-position: top center;
  padding: 10px 10px 0;
}

.certificate-card-ip65 .certificate-preview {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(252, 247, 247, 1));
}

.certificate-card-ip65 .certificate-preview img {
  object-fit: contain;
  object-position: center;
  padding: 10px;
}

.certificate-meta {
  display: grid;
  gap: 8px;
  align-content: start;
}

.certificate-kicker {
  margin: 0;
  color: #b83e3a;
  font-family: "Barlow", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.certificate-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.2;
}

.certificate-arrow {
  display: inline-flex;
  align-items: center;
  margin-top: 2px;
  color: #4d5f7a;
  font-family: "Barlow", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

@keyframes certificate-marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 10px));
  }
}

.partnerships-section {
  background:
    linear-gradient(180deg, #fff8f7, #ffffff);
}

.partnerships-shell {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  align-items: center;
  gap: 34px;
}

.partnerships-copy {
  max-width: 340px;
}

.partnerships-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.partnerships-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.partnerships-stage {
  display: grid;
  gap: 14px;
}

.partner-carousel {
  position: relative;
  overflow: hidden;
  padding: 4px 0 8px;
}

.partner-track {
  display: flex;
  gap: 18px;
  width: max-content;
  transition: transform 650ms ease;
}

.partner-card {
  display: grid;
  gap: 14px;
  width: 238px;
  flex: 0 0 238px;
  min-height: 270px;
  padding: 22px 20px;
  border-radius: 22px;
  border: 1px solid #ecdee1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 248, 248, 0.98)),
    radial-gradient(circle at top right, rgba(184, 62, 58, 0.05), transparent 42%);
  box-shadow:
    0 14px 30px rgba(47, 42, 44, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.partner-badge {
  display: inline-grid;
  place-items: center;
  justify-self: start;
  width: 92px;
  height: 92px;
  border-radius: 24px;
  color: #ffffff;
  font-family: "Barlow", sans-serif;
  text-align: center;
  box-shadow: 0 14px 24px rgba(30, 41, 59, 0.14);
}

.partner-badge strong {
  font-size: 1.9rem;
  line-height: 1;
}

.partner-badge span {
  margin-top: -6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.partner-badge-lk {
  background: linear-gradient(135deg, #1a5ca0, #4d84bf);
}

.partner-badge-ti {
  background: linear-gradient(135deg, #2453a6, #6a92d9);
}

.partner-badge-mv {
  background: linear-gradient(135deg, #b83e3a, #d4554f);
}

.partner-card-copy {
  display: grid;
  gap: 8px;
}

.partner-kicker {
  margin: 0;
  color: #b83e3a;
  font-family: "Barlow", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.partner-card-copy h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.22;
}

.partner-card-copy p {
  margin: 0;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.55;
}

.partner-footnote {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.partner-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.partner-control {
  width: 44px;
  height: 44px;
  border: 1px solid #eadcdf;
  border-radius: 8px;
  background: #ffffff;
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(47, 42, 44, 0.08);
}

.partner-control:hover {
  color: #b83e3a;
  border-color: #d7c1c5;
}

.certificate-hover-popup {
  position: fixed;
  z-index: 30;
  width: min(420px, 34vw);
  padding: 12px;
  border-radius: 20px;
  border: 1px solid #eadcdf;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 247, 248, 0.99)),
    radial-gradient(circle at top right, rgba(207, 49, 52, 0.06), transparent 34%);
  box-shadow:
    0 26px 60px rgba(47, 42, 44, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px) scale(0.96);
  transition:
    opacity 0.16s ease,
    transform 0.16s ease,
    visibility 0.16s ease;
}

.certificate-hover-popup.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.certificate-hover-popup img {
  width: 100%;
  display: block;
  border-radius: 12px;
  border: 1px solid #e9dde0;
  background: #ffffff;
}

.certificate-hover-popup span {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.standard-card {
  padding: 28px 22px;
  text-align: center;
}

.products-section {
  background: var(--section);
}

.products-section .products-grid {
  align-items: stretch;
}

.products-section .product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.products-section-intro {
  max-width: 68ch;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.products-panel-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.products-panel-types span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(228, 214, 217, 0.94);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 245, 246, 0.96));
  box-shadow:
    0 12px 26px rgba(47, 42, 44, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  color: #564d50;
  font-family: "Barlow", sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

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

.product-card {
  padding: 30px 26px;
  border-bottom: 4px solid var(--gold);
}

.product-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.product-card li + li {
  margin-top: 8px;
}

.contact-section {
  background: linear-gradient(135deg, var(--navy-dark), #4b4346 62%, #8b2f33 100%);
  color: #ffffff;
  padding: 82px 0;
}

.contact-section .section-copy h2 {
  color: #ffffff;
}

.contact-section .section-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.message {
  margin: 18px 0 0;
  min-height: 1.5em;
}

.section-tag,
.mini-label,
.product-tag {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
}

.section-tag.light {
  color: var(--gold-soft);
}

.section-copy p,
.message {
  font-size: 1rem;
  line-height: 1.8;
}

.contact-connect-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(184, 62, 58, 0.08), transparent 26%),
    radial-gradient(circle at bottom left, rgba(25, 42, 66, 0.035), transparent 24%),
    linear-gradient(180deg, #fffefe 0%, #fff7f8 100%);
}

.contact-connect-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(184, 62, 58, 0.08) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.28;
  pointer-events: none;
}

.contact-connect-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: 30px;
  align-items: start;
}

.contact-connect-copy,
.contact-connect-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #eadcdf;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(255, 248, 249, 0.985)),
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.06), transparent 38%);
  box-shadow:
    0 18px 36px rgba(47, 42, 44, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.contact-connect-copy {
  display: grid;
  align-content: start;
  gap: 20px;
  min-height: auto;
  padding: 18px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(255, 247, 248, 0.985)),
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.08), transparent 38%);
  box-shadow:
    0 28px 56px rgba(47, 42, 44, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.contact-connect-copy::before {
  display: none;
}

.contact-connect-copy::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -54px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 62, 58, 0.12), rgba(184, 62, 58, 0));
  pointer-events: none;
}

.contact-connect-visual {
  position: relative;
  overflow: hidden;
  min-height: 328px;
  border-radius: 28px;
  aspect-ratio: 1.22 / 1;
  background: #d8d8d8;
  box-shadow:
    0 22px 42px rgba(35, 31, 32, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.contact-connect-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 20, 31, 0.06) 0%, rgba(15, 20, 31, 0.16) 68%, rgba(15, 20, 31, 0.48) 100%),
    radial-gradient(circle at top right, rgba(184, 62, 58, 0.28), transparent 28%);
  pointer-events: none;
}

.contact-connect-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-connect-visual-panel {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(18, 24, 35, 0.82), rgba(18, 24, 35, 0.64)),
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.18), transparent 44%);
  box-shadow:
    0 20px 34px rgba(15, 16, 21, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.contact-connect-visual-panel .mini-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-connect-visual-panel strong {
  display: block;
  max-width: 26ch;
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.42;
}

.contact-connect-content-stack {
  display: grid;
  gap: 16px;
  padding: 2px 8px 4px;
}

.contact-connect-content-stack h2 {
  margin: 0;
  max-width: 10.5ch;
  color: var(--navy);
  font-size: clamp(2.55rem, 3.5vw, 3.38rem);
  line-height: 0.99;
  letter-spacing: -0.03em;
}

.contact-connect-content-stack > p:last-of-type {
  margin: 0;
  max-width: 42ch;
  color: var(--muted);
  font-size: 0.99rem;
  line-height: 1.74;
}

.contact-connect-whatsapp-box {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(37, 211, 102, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 255, 250, 0.95)),
    radial-gradient(circle at top left, rgba(37, 211, 102, 0.14), transparent 40%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 14px 26px rgba(41, 54, 46, 0.06);
}

.contact-connect-whatsapp-box::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 6px rgba(37, 211, 102, 0.12);
}

.contact-connect-whatsapp-box .mini-label {
  margin: 0;
  color: #149151;
}

.contact-connect-whatsapp-box strong {
  display: block;
  max-width: 26ch;
  color: var(--navy-dark);
  font-size: 1rem;
  line-height: 1.45;
}

.contact-connect-whatsapp-box a {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.contact-connect-whatsapp-box a:hover {
  color: #149151;
}

.contact-connect-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2px;
  padding-top: 2px;
}

.contact-connect-button {
  min-width: 180px;
}

.contact-connect-button.primary {
  background: #b83e3a;
}

.contact-connect-button.primary:hover {
  background: #a23532;
}

.button.contact-connect-button-secondary {
  border-color: #ead6d8;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy-dark);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.button.contact-connect-button-secondary:hover {
  border-color: #25d366;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.28);
  transform: translateY(-2px);
}

.contact-connect-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 18px;
  border: 1px solid #eadcdf;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 247, 248, 0.9)),
    radial-gradient(circle at top right, rgba(184, 62, 58, 0.08), transparent 34%);
  box-shadow:
    0 26px 52px rgba(47, 42, 44, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.contact-connect-board::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(184, 62, 58, 0.06), transparent 26%),
    radial-gradient(circle at bottom right, rgba(25, 42, 66, 0.05), transparent 24%);
  pointer-events: none;
}

.contact-connect-card {
  display: grid;
  align-content: start;
  gap: 11px;
  min-height: 100%;
  padding: 24px 24px 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 250, 250, 0.98)),
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.04), transparent 36%);
  box-shadow:
    0 16px 30px rgba(47, 42, 44, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.contact-connect-form-card {
  gap: 14px;
  padding: 26px 26px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 249, 249, 0.99)),
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.06), transparent 40%);
}

.contact-connect-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #b83e3a, rgba(184, 62, 58, 0));
}

.contact-connect-card-wide {
  grid-column: 1 / -1;
}

.contact-connect-card h3 {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  color: var(--navy);
  font-size: 1.42rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-connect-form-card h3 {
  max-width: 24ch;
}

.contact-connect-card p:last-of-type {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.62;
}

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

.contact-connect-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.contact-connect-field {
  display: grid;
  gap: 7px;
}

.contact-connect-field span {
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-connect-field input,
.contact-connect-field textarea {
  width: 100%;
  border: 1px solid #e7d5d7;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #fff9f9);
  color: var(--navy-dark);
  font: inherit;
  padding: 13px 14px;
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 4px 10px rgba(47, 42, 44, 0.02);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-connect-field textarea {
  resize: vertical;
  min-height: 116px;
}

.contact-connect-field input:focus,
.contact-connect-field textarea:focus {
  border-color: #d38483;
  box-shadow: 0 0 0 4px rgba(184, 62, 58, 0.08);
  background: #fffefe;
}

.contact-connect-field-full {
  grid-column: 1 / -1;
}

.contact-connect-form-bottom {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding-top: 2px;
}

.contact-connect-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.contact-connect-card a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 2px;
  color: #b83e3a;
  font-family: "Barlow", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.contact-connect-card a:hover {
  color: #9f312d;
}

.clients-showcase-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.07), transparent 24%),
    radial-gradient(circle at bottom right, rgba(25, 42, 66, 0.04), transparent 22%),
    linear-gradient(180deg, #fffefe 0%, #fff8f8 100%);
}

.clients-showcase-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(184, 62, 58, 0.08) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.24;
  pointer-events: none;
}

.clients-showcase-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
}

.clients-showcase-copy {
  max-width: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.clients-showcase-copy .section-tag {
  margin: 0;
  color: #b83f3b;
}

.clients-showcase-copy h2 {
  max-width: none;
  margin: 0;
}

.clients-showcase-copy p:last-child {
  max-width: none;
  margin: 0 0 8px;
}

.clients-marquee {
  position: relative;
  overflow: hidden;
  padding: 6px 10px;
  mask-image: linear-gradient(90deg, transparent 0, #000 2%, #000 98%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 2%, #000 98%, transparent 100%);
}

.clients-marquee-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: max-content;
  animation: clients-marquee-scroll 72s linear infinite;
  will-change: transform;
}

.clients-marquee:hover .clients-marquee-row {
  animation-play-state: paused;
}

.clients-marquee-set {
  display: flex;
  align-items: stretch;
  gap: 18px;
  flex-shrink: 0;
  padding-right: 18px;
}

.client-logo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  min-width: 246px;
  padding: 15px 15px 14px;
  border: 1px solid #eadcdf;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(255, 250, 250, 0.97)),
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.04), transparent 42%);
  box-shadow:
    0 14px 28px rgba(47, 42, 44, 0.055),
    0 3px 10px rgba(47, 42, 44, 0.025),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.client-logo-card::before {
  content: none;
}

.client-logo-mark {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 84px;
  padding: 12px 14px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, #ffffff, #fff5f5),
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.08), transparent 45%);
  border: 1px solid #efe0e2;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 8px 16px rgba(47, 42, 44, 0.035);
}

.client-logo-mark img {
  width: auto;
  max-width: 168px;
  max-height: 50px;
  object-fit: contain;
}

.client-logo-mark img[src$="abb.svg"] {
  max-width: 104px;
  max-height: 54px;
}

.client-logo-mark img[src$="iocl-favicon.png"] {
  max-width: 64px;
  max-height: 64px;
}

.client-logo-card strong {
  color: var(--navy-dark);
  font-size: 0.84rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

@keyframes clients-marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(207, 49, 52, 0.08), transparent 22%),
    linear-gradient(180deg, #fff9f9 0%, #fffefe 100%);
  color: var(--navy-dark);
  border-top: 1px solid #efe1e3;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(184, 62, 58, 0.08) 1px, transparent 0);
  background-size: 26px 26px;
  opacity: 0.45;
  pointer-events: none;
}

.footer-shell {
  position: relative;
  z-index: 1;
  padding-top: 24px;
  padding-bottom: 18px;
}

.footer-compact {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 18px;
  padding-top: 34px;
  padding-bottom: 26px;
  text-align: center;
}

.footer-compact-logo a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-compact .footer-logo {
  width: min(100%, 230px);
}

.footer-compact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  max-width: 840px;
}

.footer-compact-links a {
  color: var(--navy-dark);
  font-family: "Barlow", sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
}

.footer-compact-links a:hover {
  color: var(--hero-blue);
}

.footer-compact-social {
  display: grid;
  gap: 12px;
}

.footer-compact-social h3 {
  margin: 0;
  color: var(--navy-dark);
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.footer-compact-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.footer-compact-icons a {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid #efdfdf;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(47, 42, 44, 0.05);
}

.footer-compact-icons a:hover {
  background: #fff3f3;
  border-color: #e6c9cb;
}

.footer-compact-icons svg {
  width: 20px;
  height: 20px;
  fill: #b83e3a;
}

.footer-compact-copy p {
  margin: 0;
  color: #8a8083;
  font-size: 0.9rem;
}

.footer-pro {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  padding-top: 24px;
  padding-bottom: 18px;
}

.footer-pro-top {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  padding: 24px 26px;
  border: 1px solid #efdfdf;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 248, 0.98)),
    radial-gradient(circle at top right, rgba(184, 62, 58, 0.06), transparent 30%);
  box-shadow:
    0 18px 36px rgba(47, 42, 44, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.footer-pro-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b83e3a, rgba(184, 62, 58, 0.18));
}

.footer-pro-brand {
  display: grid;
  gap: 12px;
}

.footer-pro-brand p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.footer-pro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-pro-tags span {
  padding: 8px 12px;
  border: 1px solid #f0dddd;
  border-radius: 999px;
  background: #fff4f4;
  color: var(--hero-blue);
  font-size: 0.8rem;
  font-weight: 600;
}

.footer-pro-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-pro-button {
  min-width: 170px;
  justify-content: center;
}

.footer-pro-button-secondary {
  border-color: #ead6d8;
  background: #ffffff;
  color: var(--navy-dark);
}

.footer-pro-button-secondary:hover {
  background: #fff5f5;
}

.footer-pro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 0.9fr;
  gap: 16px;
}

.footer-pro-column {
  position: relative;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px 18px 16px;
  border: 1px solid #efdfdf;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #fffafa);
  box-shadow:
    0 10px 24px rgba(47, 42, 44, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.footer-pro-column::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: rgba(184, 62, 58, 0.26);
}

.footer-pro-column h3 {
  margin: 0 0 6px;
  color: var(--navy-dark);
  font-family: "Barlow", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-pro-column a,
.footer-pro-column span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.52;
  text-decoration: none;
}

.footer-pro-column a:hover {
  color: var(--hero-blue);
}

.footer-pro-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-pro-social a {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid #efdfdf;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(47, 42, 44, 0.045);
}

.footer-pro-social a:hover {
  border-color: #e2c7ca;
  background: #fff3f3;
  transform: translateY(-1px);
}

.footer-pro-social svg {
  width: 19px;
  height: 19px;
  fill: var(--hero-blue);
}

.footer-pro-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px 18px;
  padding: 10px 8px 0;
  border-top: 1px solid #efe1e3;
}

.footer-pro-bottom p {
  margin: 0;
  color: #8a8083;
  font-size: 0.88rem;
}

.footer-pro-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-pro-bottom-links a {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-pro-bottom-links a:hover {
  color: var(--hero-blue);
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid #efdfdf;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 248, 0.98));
  box-shadow: 0 12px 28px rgba(47, 42, 44, 0.06);
}

.footer-cta .section-tag.light {
  margin-bottom: 8px;
  color: var(--hero-blue);
}

.footer-cta h2 {
  margin: 0;
  max-width: 720px;
  color: var(--navy-dark);
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.footer-cta p:last-child {
  margin: 10px 0 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-button {
  min-width: 170px;
  justify-content: center;
}

.footer-button-secondary {
  border-color: #e7d4d6;
  background: #ffffff;
  color: var(--navy-dark);
}

.footer-button-secondary:hover {
  background: #fff5f5;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.footer-brand-block,
.footer-column {
  min-height: 100%;
  padding: 20px 18px;
  border: 1px solid #efdfdf;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #fff9f9);
  box-shadow: 0 10px 24px rgba(47, 42, 44, 0.04);
}

.footer-brand-block {
  display: grid;
  gap: 12px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
}

.footer-logo {
  width: min(100%, 210px);
  height: auto;
  display: block;
}

.footer-brand-block p {
  margin: 0;
  max-width: 410px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.68;
}

.footer-highlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-highlight-list span {
  padding: 8px 10px;
  border-radius: 999px;
  background: #fff1f1;
  color: var(--hero-blue);
  font-size: 0.8rem;
  line-height: 1;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-title {
  margin: 0 0 8px;
  color: var(--navy-dark);
  font-family: "Barlow", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--hero-blue);
}

.footer-contact a,
.footer-contact span {
  word-break: break-word;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #efdfdf;
}

.footer-bottom p {
  margin: 0;
  color: #8a8083;
  font-size: 0.88rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-bottom-links a {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: var(--hero-blue);
}

@media (max-width: 980px) {
  .contact-connect-shell {
    grid-template-columns: 1fr;
  }

  .contact-connect-copy {
    padding: 18px;
    border-radius: 26px;
  }

  .contact-connect-visual {
    min-height: 300px;
    aspect-ratio: auto;
  }

  .contact-connect-content-stack {
    padding: 2px 6px 4px;
  }

  .contact-connect-content-stack h2 {
    max-width: 100%;
  }

  .contact-connect-board {
    grid-template-columns: 1fr 1fr;
    padding: 14px;
    border-radius: 26px;
  }

  .contact-connect-form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-redesign,
  .about-editorial,
  .about-showcase,
  .about-pro,
  .about-shell,
  .section-grid,
  .leadership-grid,
  .contact-shell,
  .partner-grid,
  .standards-grid,
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-summary-grid,
  .about-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .about-pro-stats {
    grid-template-columns: 1fr 1fr;
  }

  .about-story-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .about-editorial-metrics,
  .about-panel-timeline,
  .about-proof-strip,
  .about-timeline-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vision-shell {
    grid-template-columns: 1fr;
  }

  .vision-copy h2 span {
    white-space: normal;
  }

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

  .trust-highlight,
  .trust-block {
    border-right: 0;
    border-bottom: 1px solid #eedfe2;
  }

  .trust-card > :last-child {
    border-bottom: 0;
  }

  .header-topbar {
    grid-template-columns: auto 1fr;
  }

  .header-meta {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .header-navrow {
    flex-wrap: wrap;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .hero-image-wrap {
    aspect-ratio: 1773 / 738;
  }

  .hero-image-overlay {
    inset: 46px 0 auto;
  }

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

  .footer-cta-actions {
    justify-content: flex-start;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }

  .footer-compact {
    padding-top: 28px;
  }

  .footer-pro-top,
  .footer-pro-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-pro-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 1100px) {
  .hero-brochure,
  .hero-actions-rail {
    display: none;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .header-shell {
    gap: 10px;
    padding: 12px 0;
  }

  .header-topbar {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 12px;
  }

  .header-meta,
  .header-cta {
    display: none;
  }

  .brand-logo {
    width: min(138px, 44vw);
  }

  .header-navrow {
    display: block;
    padding-top: 8px;
  }

  .footer-shell {
    padding-top: 24px;
  }

  .footer-cta,
  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .contact-connect-board {
    grid-template-columns: 1fr;
  }

  .contact-connect-copy,
  .contact-connect-card {
    padding: 20px 18px;
    border-radius: 20px;
  }

  .contact-connect-board {
    padding: 12px;
    border-radius: 22px;
  }

  .contact-connect-actions {
    flex-direction: column;
  }

  .contact-connect-visual {
    min-height: 246px;
  }

  .contact-connect-visual-panel {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px 16px;
    border-radius: 18px;
  }

  .contact-connect-content-stack {
    gap: 14px;
    padding-inline: 2px;
  }

  .contact-connect-form-grid,
  .contact-connect-form-bottom {
    grid-template-columns: 1fr;
  }

  .contact-connect-button {
    width: 100%;
    min-width: 0;
  }

  .footer-cta {
    padding: 24px 20px;
  }

  .footer-grid {
    gap: 16px;
  }

  .footer-brand-block,
  .footer-column {
    padding: 22px 18px;
  }

  .footer-cta-actions,
  .footer-bottom-links {
    justify-content: flex-start;
  }

  .footer-button {
    width: 100%;
    min-width: 0;
  }

  .footer-compact {
    gap: 16px;
    padding-top: 24px;
    padding-bottom: 22px;
  }

  .footer-compact .footer-logo {
    width: min(100%, 180px);
  }

  .footer-compact-links {
    gap: 6px 14px;
  }

  .footer-compact-links a {
    font-size: 0.9rem;
  }

  .footer-compact-icons a {
    width: 42px;
    height: 42px;
  }

  .footer-pro {
    gap: 14px;
    padding-top: 22px;
  }

  .footer-pro-top,
  .footer-pro-grid {
    grid-template-columns: 1fr;
  }

  .footer-pro-top {
    padding: 18px;
  }

  .footer-pro-column {
    padding: 16px;
  }

  .footer-pro-actions,
  .footer-pro-bottom,
  .footer-pro-bottom-links {
    justify-content: flex-start;
  }

  .footer-pro-button {
    width: 100%;
    min-width: 0;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 6px 0 0;
  }

  .site-nav a {
    width: 100%;
    padding: 8px 0;
    border-bottom: 1px solid #f5e8ea;
  }

  .site-nav a + a::before {
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .about-editorial-metrics,
  .about-panel-timeline,
  .about-proof-strip,
  .about-timeline-grid,
  .about-story-metrics,
  .about-pro-stats,
  .about-summary-grid,
  .about-metrics,
  .vision-card-grid,
  .section-grid,
  .leadership-grid,
  .contact-shell,
  .partner-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .about-story-panel {
    padding: 24px 22px 22px 24px;
    border-radius: 24px;
  }

  .about-story-panel .section-tag {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
  }

  .about-stage-label {
    left: 18px;
    top: 18px;
  }

  .about-visual-stage {
    padding: 10px;
    border-radius: 24px;
  }

  .about-stage-image {
    min-height: 320px;
  }

  .about-timeline-card {
    padding: 20px 18px;
    border-radius: 20px;
  }

  .about-panel {
    padding: 22px;
  }

  .about-pro-card {
    padding: 22px;
  }

  .about-stage {
    padding: 14px 14px 72px;
  }

  .about-stage-image {
    min-height: 340px;
  }

  .about-stage-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 14px 16px;
  }

  .about-editorial-copy {
    padding-left: 18px;
  }

  .about-editorial-copy .section-tag {
    font-size: 1.06rem;
    letter-spacing: 0.1em;
  }

  .about-editorial-copy h2 span {
    white-space: normal;
  }

  .about-editorial-visual {
    padding-bottom: 20px;
  }

  .about-editorial-image {
    min-height: 320px;
  }

  .about-editorial-panel {
    margin-top: 16px;
  }

  .vision-note {
    margin-top: 0;
  }

  .vision-copy {
    padding-left: 18px;
  }

  .vision-copy .section-tag {
    font-size: 1.06rem;
    letter-spacing: 0.1em;
  }

  .vision-copy h2 span {
    white-space: normal;
  }

  .vision-card {
    padding: 22px 20px;
    border-radius: 20px;
  }

  .vision-card h3 {
    font-size: 1.14rem;
  }

  .founder-copy {
    padding: 24px 22px 22px 24px;
    border-radius: 24px;
  }

  .founder-message-card {
    padding: 18px 18px 16px 18px;
    border-radius: 18px;
  }

  .founder-message-card::before {
    font-size: 4rem;
    right: 14px;
  }

  .portrait-card {
    justify-items: start;
  }

  .portrait-frame,
  .portrait-meta {
    width: min(100%, 420px);
  }

  .portrait-meta {
    text-align: left;
  }

  .vision-image {
    min-height: 360px;
    max-height: 420px;
  }

  .about-pro-image {
    min-height: 300px;
  }

  .about-photo {
    min-height: 300px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hero-image-wrap {
    aspect-ratio: 1773 / 738;
  }

  .hero-image-overlay {
    inset: 22px 0 auto;
    padding: 0 20px;
  }

  .hero-image-overlay h1 {
    white-space: normal;
    font-size: 1rem;
  }

  .hero-image-overlay h2 {
    white-space: normal;
    font-size: 0.68rem;
  }

  .hero-kicker {
    margin-bottom: 10px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .hero-subcopy {
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .hero-since {
    min-height: 36px;
    margin-top: 14px;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  .hero-brochure,
  .hero-actions-rail {
    display: none;
  }

  .section-space,
  .leadership-section,
  .contact-section {
    padding: 64px 0;
  }

  .standards-shell {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .partnerships-shell {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .standards-copy {
    grid-column: 1;
    grid-row: auto;
    max-width: none;
    justify-self: start;
  }

  .partnerships-copy {
    max-width: none;
  }

  .partner-card {
    width: min(250px, 76vw);
    flex-basis: min(250px, 76vw);
  }

  .certificate-marquee {
    grid-column: 1;
    grid-row: auto;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .certificate-marquee::before,
  .certificate-marquee::after {
    display: none;
  }

  .certificate-track {
    animation: none;
  }

  .certificate-card {
    width: min(260px, 72vw);
    flex-basis: min(260px, 72vw);
  }

.certificate-hover-popup {
    display: none;
  }

  .trust-band {
    margin-top: -20px;
  }
}

.partnerships-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 251, 249, 0.68) 0%, rgba(255, 255, 255, 0.8) 100%),
    url("assets/images/strategic-partnerships-wave-grid.svg?v=20260329b");
  background-repeat: no-repeat, no-repeat;
  background-size: cover, 122% auto;
  background-position: center, center 18%;
}

.partnerships-section::before {
  content: none;
}

.partnerships-section::after {
  content: none;
}

.partnerships-showcase {
  position: relative;
  z-index: 1;
  max-width: 1280px;
}

.partnerships-head {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto 42px;
  text-align: center;
}

.partnerships-head .section-tag {
  justify-self: center;
  margin: 0;
  color: #b83e3a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.partnerships-head h2 {
  margin: 0;
  color: #2f2a2c;
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.partnerships-head p {
  margin: 0 auto;
  max-width: 860px;
  color: #4f4a4c;
  font-size: 1.16rem;
  line-height: 1.72;
}

.partner-deck-shell {
  position: relative;
  min-height: 580px;
  padding: 8px 86px 58px;
  perspective: 2200px;
}

.partner-deck {
  position: relative;
  min-height: 520px;
  transform-style: preserve-3d;
}

.partner-deck-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(100%, 390px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform-origin: center center;
  transition:
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms ease,
    filter 420ms ease;
}

.partner-deck-card.is-active,
.partner-deck-card.is-prev,
.partner-deck-card.is-next {
  visibility: visible;
  opacity: 1;
}

.partner-deck-card.is-active {
  z-index: 3;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.partner-deck-card.is-prev {
  z-index: 2;
  transform: translate(calc(-50% - 232px), -50%) rotateY(48deg) scale(0.7);
  filter: saturate(0.9) brightness(0.98);
}

.partner-deck-card.is-next {
  z-index: 2;
  transform: translate(calc(-50% + 232px), -50%) rotateY(-48deg) scale(0.7);
  filter: saturate(0.9) brightness(0.98);
}

.partner-deck-card.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.partner-deck-frame {
  display: grid;
  gap: 13px;
  padding: 18px 18px 21px;
  border: 5px solid #5c86af;
  border-radius: 2px;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  box-shadow:
    0 20px 48px rgba(49, 74, 102, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.partner-deck-card.is-prev .partner-deck-frame,
.partner-deck-card.is-next .partner-deck-frame {
  box-shadow: 0 14px 28px rgba(49, 74, 102, 0.11);
}

.partner-deck-frame h3 {
  margin: 0;
  color: #b83e3a;
  font-family: "Barlow", sans-serif;
  font-size: clamp(1.4rem, 1.95vw, 2rem);
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
}

.partner-deck-certificate {
  margin: 0;
  padding: 8px;
  border: 4px solid #5c86af;
  background: linear-gradient(180deg, #edf4fb, #ffffff);
  box-shadow: inset 0 0 0 1px rgba(92, 134, 175, 0.16);
}

.partner-deck-certificate img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.02;
  object-fit: contain;
  background: #ffffff;
}

.partner-deck-copy {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.partner-deck-copy strong {
  color: #2f2a2c;
  font-family: "Barlow", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.24;
}

.partner-deck-copy span {
  max-width: 280px;
  color: #5b5557;
  font-size: 0.85rem;
  line-height: 1.4;
}

.partner-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  border: none;
  background: transparent;
  color: #c6ced8;
  font-size: 4.35rem;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-50%);
}

.partner-nav:hover {
  color: #7d94ad;
}

.partner-nav-prev {
  left: -4px;
}

.partner-nav-next {
  right: -4px;
}

.partner-deck-card.is-active .partner-deck-frame {
  animation: partner-deck-float 3.2s ease-in-out infinite;
}

@keyframes partner-deck-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 1180px) {
  .partner-deck-shell {
    min-height: 540px;
    padding: 12px 70px 46px;
  }

  .partner-deck {
    min-height: 475px;
  }

  .partner-deck-card {
    width: min(100%, 346px);
  }

  .partner-deck-card.is-prev {
    transform: translate(calc(-50% - 188px), -50%) rotateY(42deg) scale(0.64);
  }

  .partner-deck-card.is-next {
    transform: translate(calc(-50% + 188px), -50%) rotateY(-42deg) scale(0.64);
  }
}

@media (max-width: 900px) {
  .partnerships-head {
    margin-bottom: 28px;
  }

  .partnerships-head p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .partner-deck-shell {
    min-height: 0;
    padding: 6px 18px 70px;
    overflow: visible;
  }

  .partner-deck {
    min-height: 510px;
  }

  .partner-deck-card {
    width: min(100%, 360px);
  }

  .partner-deck-card.is-prev,
  .partner-deck-card.is-next {
    opacity: 0;
    visibility: hidden;
  }

  .partner-nav {
    top: auto;
    bottom: 0;
    transform: none;
    font-size: 3rem;
  }

  .partner-nav-prev {
    left: calc(50% - 62px);
  }

  .partner-nav-next {
    right: calc(50% - 62px);
  }
}

.product-card-media {
  margin: 16px 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(210px, 22vw, 250px);
  padding: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid #eadbdd;
  background:
    linear-gradient(180deg, #ffffff, #fff7f8),
    radial-gradient(circle at top left, rgba(207, 49, 52, 0.05), transparent 42%);
  box-shadow:
    0 16px 34px rgba(47, 42, 44, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.product-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transform: scale(1.04);
  background: #ffffff;
}

.products-section .product-card li {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.6;
}

.projects-division-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.05), transparent 30%),
    linear-gradient(180deg, #fffefe 0%, #fff8f8 50%, #fffefe 100%);
}

.projects-division-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 16px 16px, rgba(25, 42, 66, 0.04) 1.1px, transparent 1.2px);
  background-size: 24px 24px;
  opacity: 0.22;
  pointer-events: none;
}

.projects-division-section .container {
  position: relative;
  z-index: 1;
}

.projects-division-section .container::before {
  content: "";
  position: absolute;
  left: -32px;
  right: -32px;
  top: 280px;
  height: 560px;
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 248, 249, 0.68)),
    radial-gradient(circle at 15% 20%, rgba(184, 62, 58, 0.04), transparent 32%);
  border: 1px solid rgba(234, 220, 223, 0.5);
  box-shadow: 0 28px 50px rgba(47, 42, 44, 0.035);
  pointer-events: none;
}

.projects-division-header {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 22px;
  align-items: start;
  margin-bottom: 12px;
}

.projects-header-copy {
  position: relative;
  overflow: hidden;
  padding: 24px 28px 24px 30px;
  display: grid;
  align-content: start;
  gap: 8px;
  border-radius: 28px;
  border: 1px solid #eadcdf;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.997), rgba(255, 248, 249, 0.987)),
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.08), transparent 42%);
  box-shadow:
    0 22px 44px rgba(47, 42, 44, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.projects-header-copy::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 22px;
  bottom: 22px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #b83e3a, rgba(184, 62, 58, 0.14));
}

.projects-header-copy::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -48px;
  bottom: -68px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 62, 58, 0.1), rgba(184, 62, 58, 0));
  pointer-events: none;
}

.projects-header-copy h2 {
  max-width: 13.2ch;
  margin-bottom: 0;
  font-size: clamp(2.45rem, 3.85vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.projects-header-lead {
  max-width: 31ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.68;
}

.projects-header-summary {
  padding: 18px 22px 14px;
  border-radius: 26px;
  border: 1px solid #eadcdf;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.997), rgba(255, 248, 249, 0.985)),
    radial-gradient(circle at top right, rgba(184, 62, 58, 0.055), transparent 42%);
  box-shadow:
    0 16px 34px rgba(47, 42, 44, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  position: relative;
}

.projects-header-summary::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(184, 62, 58, 0.92), rgba(184, 62, 58, 0));
}

.projects-header-summary p {
  max-width: 64ch;
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.62;
}

.projects-header-summary p + p {
  margin-top: 12px;
}

.projects-header-pills,
.projects-client-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.projects-header-pills {
  margin-top: 12px;
}

.projects-header-pills span,
.projects-client-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #eadcdf;
  background: linear-gradient(180deg, #ffffff, #fff6f7);
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow:
    0 8px 16px rgba(47, 42, 44, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.projects-division-board {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.26fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 20px;
}

.projects-media-card {
  position: relative;
  margin: 0;
  width: min(100%, 356px);
  justify-self: center;
  overflow: hidden;
  min-height: auto;
  aspect-ratio: 1 / 1;
  margin-top: 6px;
  border-radius: 30px;
  border: 1px solid #eadcdf;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(255, 248, 249, 0.985)),
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.07), transparent 36%);
  box-shadow:
    0 24px 44px rgba(47, 42, 44, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  isolation: isolate;
}

.projects-media-card::before {
  content: "";
  position: absolute;
  inset: auto -10px -10px 20px;
  height: 68%;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(184, 62, 58, 0.14), rgba(184, 62, 58, 0.03));
  filter: blur(10px);
  z-index: -1;
  opacity: 0.7;
}

.projects-media-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  pointer-events: none;
}

.projects-media-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.projects-media-badge {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  max-width: none;
  padding: 12px 14px 11px;
  border-radius: 18px;
  border: 1px solid rgba(234, 220, 223, 0.9);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 30px rgba(47, 42, 44, 0.13);
  backdrop-filter: blur(10px);
}

.projects-media-badge span {
  display: inline-block;
  margin-bottom: 6px;
  color: #b83e3a;
  font-family: "Barlow", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.projects-media-badge strong {
  display: block;
  color: var(--navy);
  font-size: 0.92rem;
  line-height: 1.28;
}

.projects-content-stack {
  display: grid;
  gap: 16px;
  margin-top: -24px;
}

.projects-focus-card {
  position: relative;
  overflow: hidden;
  padding: 24px 24px 22px;
  border-radius: 28px;
  border: 1px solid #eadcdf;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(255, 247, 248, 0.985)),
    radial-gradient(circle at top right, rgba(184, 62, 58, 0.08), transparent 38%);
  box-shadow:
    0 20px 42px rgba(47, 42, 44, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.projects-focus-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #b83e3a, rgba(184, 62, 58, 0));
}

.projects-focus-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -100px;
  top: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 62, 58, 0.07), rgba(184, 62, 58, 0));
  pointer-events: none;
}

.projects-focus-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.56rem;
  line-height: 1.16;
  max-width: 23ch;
  letter-spacing: -0.02em;
}

.projects-focus-card > p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.62;
  max-width: 60ch;
}

.projects-highlight-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.projects-highlight-list li {
  position: relative;
  padding-left: 14px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.56;
}

.projects-highlight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b83e3a;
  box-shadow: 0 0 0 4px rgba(184, 62, 58, 0.1);
}

.projects-highlight-list li + li {
  margin-top: 10px;
}

.projects-key-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.projects-division-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.projects-key-stats article,
.project-service-card {
  position: relative;
  overflow: hidden;
  padding: 22px 20px 20px;
  border-radius: 22px;
  border: 1px solid #eadcdf;
  background:
    linear-gradient(180deg, #ffffff, #fff9f9),
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.05), transparent 42%);
  box-shadow: 0 14px 28px rgba(47, 42, 44, 0.05);
}

.projects-key-stats article {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.projects-key-stats article:hover,
.project-service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(47, 42, 44, 0.08);
}

.project-service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #b83e3a, rgba(184, 62, 58, 0));
}

.projects-key-stats strong {
  display: block;
  margin-bottom: 7px;
  color: #b83e3a;
  font-family: "Barlow", sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
}

.projects-key-stats span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.projects-key-stats article {
  min-height: 112px;
}

.project-service-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.06rem;
  line-height: 1.24;
  letter-spacing: -0.01em;
}

.project-service-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.58;
}

.projects-client-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border-radius: 26px;
  border: 1px solid #eadcdf;
  background:
    linear-gradient(180deg, #ffffff, #fff9f9),
    radial-gradient(circle at top left, rgba(207, 49, 52, 0.06), transparent 42%);
  box-shadow: 0 14px 28px rgba(47, 42, 44, 0.045);
}

.projects-client-band::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #b83e3a, rgba(184, 62, 58, 0));
}

.projects-client-intro h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.28;
  max-width: 24ch;
}

.projects-client-list span {
  background:
    linear-gradient(180deg, #ffffff, #fff7f8),
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.04), transparent 34%);
}

@media (max-width: 1180px) {
  .projects-division-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .projects-media-card {
    width: min(100%, 340px);
  }
}

@media (max-width: 980px) {
  .projects-division-section .container::before {
    left: -10px;
    right: -10px;
    top: 360px;
    height: 720px;
    border-radius: 28px;
  }

  .projects-division-header,
  .projects-division-board,
  .projects-client-band {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .projects-header-copy {
    padding: 22px 20px 20px 24px;
  }

  .projects-header-copy h2 {
    max-width: 100%;
  }

  .projects-header-summary {
    padding: 22px 20px 20px;
    border-radius: 22px;
  }

  .projects-media-card {
    width: 100%;
    justify-self: stretch;
    aspect-ratio: 1 / 1;
  }

  .projects-division-grid {
    grid-template-columns: 1fr;
  }

  .projects-content-stack {
    margin-top: 0;
  }

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

@media (max-width: 760px) {
  .projects-division-section .container::before {
    display: none;
  }

  .projects-focus-card,
  .project-service-card,
  .projects-client-band {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .projects-header-pills span,
  .projects-client-list span {
    min-height: 34px;
    padding: 0 13px;
    font-size: 0.78rem;
  }

  .projects-sector-chip-trigger {
    min-height: 34px;
    padding: 0 13px;
    font-size: 0.78rem;
  }

  .projects-sector-popup {
    width: min(320px, 34vw);
  }

  .projects-header-copy h2 {
    font-size: clamp(2rem, 7vw, 2.55rem);
  }

  .projects-header-lead {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .projects-header-summary {
    padding: 18px 16px 16px;
    border-radius: 18px;
  }

  .projects-media-card {
    aspect-ratio: 1 / 1;
    border-radius: 20px;
  }

  .projects-media-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
    padding: 16px 16px 14px;
    border-radius: 18px;
  }

  .projects-media-badge strong,
  .projects-focus-card h3 {
    font-size: 1.34rem;
  }

  .projects-highlight-list li {
    font-size: 0.92rem;
  }

  .projects-key-stats {
    grid-template-columns: 1fr;
  }

  .projects-key-stats strong {
    font-size: 1.4rem;
  }

  .projects-client-intro h3,
  .project-service-card h3 {
    font-size: 1.14rem;
  }
}

.products-grid {
  align-items: start;
}

.product-card {
  height: auto;
}

/* Custom founder right-side balance corrections. */
.portrait-card {
  gap: 16px;
  padding-right: 0;
}

.portrait-stage,
.portrait-note-box,
.portrait-meta {
  width: min(100%, 540px);
}

.portrait-stage {
  padding: 16px;
}

.portrait-support {
  display: block;
}

.portrait-badge {
  width: 100%;
}

.portrait-note-box {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid #ecdddf;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 248, 248, 0.98)),
    radial-gradient(circle at top left, rgba(207, 49, 52, 0.06), transparent 44%);
  box-shadow:
    0 18px 34px rgba(47, 42, 44, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.portrait-note-box span {
  color: #b83e3a;
  font-family: "Barlow", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portrait-note-box strong {
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .portrait-stage,
  .portrait-note-box,
  .portrait-meta {
    width: 100%;
  }

  .portrait-note-box {
    padding: 16px 16px;
    border-radius: 20px;
  }

  .portrait-note-box strong {
    font-size: 0.94rem;
  }
}

@media (max-width: 980px) {
  .clients-showcase-shell {
    gap: 22px;
  }

  .clients-showcase-copy {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .client-logo-card {
    min-width: 220px;
    padding: 14px 14px 13px;
  }
}

@media (max-width: 760px) {
  .clients-showcase-copy h2,
  .clients-showcase-copy p:last-child {
    max-width: 100%;
  }

  .clients-marquee {
    margin-inline: -6px;
    padding-inline: 6px;
  }

  .clients-marquee-row {
    gap: 0;
  }

  .clients-marquee-set {
    gap: 14px;
    padding-right: 14px;
  }

  .client-logo-card {
    min-width: 196px;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 16px;
  }

  .client-logo-mark {
    width: 100%;
    min-height: 62px;
    padding: 8px 10px;
    border-radius: 12px;
  }

  .client-logo-mark img {
    width: auto;
    max-width: 136px;
    max-height: 36px;
  }

  .client-logo-mark img[src$="abb.svg"] {
    max-width: 84px;
    max-height: 42px;
  }

  .client-logo-mark img[src$="iocl-favicon.png"] {
    max-width: 50px;
    max-height: 50px;
  }

  .client-logo-card strong {
    font-size: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .clients-marquee-row {
    animation: none;
  }
}

/* Final custom desktop pass for the home hero composition and spacing. */
@media (min-width: 981px) {
  .hero-shell {
    gap: 0;
  }

  .hero-image-wrap {
    display: flex;
    align-items: stretch;
    justify-content: center;
  }

  .hero-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    transform: none;
    object-fit: contain;
    object-position: center bottom;
  }

  .hero-image-wrap:hover .hero-image {
    transform: none;
  }

  .hero-image-overlay {
    inset: clamp(24px, 2.6vw, 38px) auto auto 50%;
    right: auto;
    bottom: auto;
    width: min(calc(100% - 120px), 840px);
    max-width: 840px;
    padding: 20px 28px 16px;
    text-align: center;
    align-items: center;
    transform: translateX(-50%);
  }

  .hero-image-overlay::after {
    left: 24px;
    right: 24px;
  }

  .hero-image-overlay h1 {
    max-width: 19ch;
    white-space: normal;
    text-wrap: balance;
    font-size: clamp(1.95rem, 2.55vw, 2.85rem);
    line-height: 1.04;
  }

  .hero-image-overlay h2 {
    white-space: normal;
    text-wrap: balance;
    font-size: clamp(0.98rem, 1.1vw, 1.22rem);
    line-height: 1.2;
    letter-spacing: 0.075em;
  }
}

@media (min-width: 981px) {
  .hero-shell {
    gap: 0;
  }

  .hero-image-wrap {
    display: flex;
    align-items: stretch;
    justify-content: center;
  }

  .hero-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    transform: none;
    object-fit: contain;
    object-position: center bottom;
  }

  .hero-image-wrap:hover .hero-image {
    transform: none;
  }

  .hero-image-overlay {
    inset: clamp(24px, 2.6vw, 38px) auto auto 50%;
    width: min(calc(100% - 120px), 840px);
    max-width: 840px;
    padding: 20px 28px 16px;
    text-align: center;
    align-items: center;
    transform: translateX(-50%);
  }

  .hero-image-overlay::after {
    left: 24px;
    right: 24px;
  }

  .hero-image-overlay h1 {
    max-width: 19ch;
    white-space: normal;
    text-wrap: balance;
    font-size: clamp(1.95rem, 2.55vw, 2.85rem);
    line-height: 1.04;
  }

  .hero-image-overlay h2 {
    white-space: normal;
    text-wrap: balance;
    font-size: clamp(0.98rem, 1.1vw, 1.22rem);
    line-height: 1.2;
    letter-spacing: 0.075em;
  }
}

/* Custom site-wide polish pass. */
html {
  scroll-padding-top: 24px;
}

body {
  background:
    linear-gradient(180deg, #fffdfd 0%, #fff7f7 34%, #ffffff 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  width: min(1200px, calc(100% - 32px));
}

.section-space {
  padding-block: clamp(74px, 7vw, 108px);
}

.section-tag,
.mini-label,
.product-tag {
  letter-spacing: 0.16em;
}

.section-copy h2,
.section-heading h2 {
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.section-copy p {
  max-width: 62ch;
}

.site-header {
  border-bottom-color: rgba(234, 220, 223, 0.84);
  box-shadow: 0 16px 42px rgba(47, 42, 44, 0.06);
}

.header-shell {
  gap: 12px;
  padding: 16px 0 18px;
}

.header-topbar {
  gap: 22px;
}

.header-navrow {
  gap: 24px;
  padding-top: 16px;
  border-top-color: rgba(241, 227, 229, 0.9);
}

.brand-logo {
  width: clamp(148px, 16vw, 214px);
  filter: drop-shadow(0 6px 14px rgba(47, 42, 44, 0.08));
}

.meta-card {
  border-color: #efdfE2;
  border-radius: 16px;
  min-width: 178px;
  padding: 12px 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(255, 247, 248, 0.98)),
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.05), transparent 46%);
  box-shadow:
    0 14px 28px rgba(47, 42, 44, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.meta-card a,
.meta-card span:last-child {
  font-size: 0.96rem;
}

.site-nav {
  gap: 32px;
}

.site-nav a {
  padding: 6px 0;
  font-size: 1rem;
  transition: color 220ms ease, transform 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #b83e3a;
  transform: translateY(-1px);
}

.button {
  box-shadow: 0 14px 30px rgba(47, 42, 44, 0.08);
}

.button.primary {
  box-shadow: 0 18px 34px rgba(184, 62, 58, 0.22);
}

.button.secondary {
  backdrop-filter: blur(10px);
}

.hero-section {
  background:
    radial-gradient(circle at left top, rgba(207, 49, 52, 0.08), transparent 24%),
    radial-gradient(circle at right bottom, rgba(47, 42, 44, 0.035), transparent 22%),
    linear-gradient(180deg, #fffdfd, #faf5f5);
}

.hero-image-wrap {
  box-shadow:
    0 26px 58px rgba(47, 42, 44, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.hero-image {
  filter: saturate(1.03) contrast(1.01);
}

.hero-image-overlay {
  inset: 48px 0 auto;
}

.hero-image-overlay h1 {
  letter-spacing: -0.03em;
  text-shadow: 0 10px 26px rgba(255, 255, 255, 0.62);
}

.hero-image-overlay h2 {
  text-shadow: 0 8px 18px rgba(255, 255, 255, 0.56);
}

.hero-brochure {
  box-shadow: 0 20px 34px rgba(47, 42, 44, 0.16);
}

.hero-fab {
  box-shadow:
    0 16px 30px rgba(47, 42, 44, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.trust-card {
  border: 1px solid #eadcdf;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(255, 247, 248, 0.99)),
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.05), transparent 40%);
  box-shadow:
    0 28px 56px rgba(47, 42, 44, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.trust-highlight,
.trust-block {
  padding: 18px 18px;
}

.trust-inline-grid article,
.partner-grid article,
.about-capability-grid article,
.about-proof-strip article,
.vision-card,
.product-card,
.projects-key-stats article,
.client-logo-card,
.contact-connect-card,
.footer-pro-tags span {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.trust-inline-grid article,
.partner-grid article {
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 249, 0.98));
  border: 1px solid #efe1e3;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 10px 22px rgba(47, 42, 44, 0.04);
}

.trust-inline-grid article:hover,
.partner-grid article:hover,
.about-capability-grid article:hover,
.about-proof-strip article:hover,
.vision-card:hover,
.product-card:hover,
.projects-key-stats article:hover,
.client-logo-card:hover,
.contact-connect-card:hover {
  transform: translateY(-2px);
}

.about-story-panel,
.about-timeline-card,
.vision-copy,
.founder-copy,
.founder-message-card,
.portrait-stage,
.portrait-meta,
.partner-deck-frame,
.certificate-card,
.product-card,
.projects-header-copy,
.projects-header-summary,
.projects-media-card,
.projects-focus-card,
.project-service-card,
.projects-client-band,
.contact-connect-copy,
.contact-connect-board,
.contact-connect-card,
.client-logo-card,
.footer-pro-top,
.footer-pro-column {
  border-color: #eadcdf;
  box-shadow:
    0 24px 48px rgba(47, 42, 44, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.about-stage-frame,
.vision-frame,
.portrait-frame,
.product-card-media,
.certificate-preview,
.projects-media-card {
  box-shadow:
    0 22px 44px rgba(47, 42, 44, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.vision-shell,
.leadership-grid,
.contact-connect-shell,
.clients-showcase-shell {
  align-items: start;
}

.vision-note,
.portrait-note-box,
.projects-media-badge {
  box-shadow:
    0 18px 34px rgba(47, 42, 44, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.partner-deck-frame {
  border-color: #d8e1ec;
}

.certificate-card {
  border-radius: 24px;
}

.product-card {
  padding: 22px 22px 20px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 249, 249, 0.98)),
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.05), transparent 42%);
}

.product-card-media {
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 249, 0.96));
}

.product-card-media img {
  transition: transform 280ms ease;
}

.product-card:hover .product-card-media img {
  transform: scale(1.018);
}

.projects-division-header,
.projects-division-board {
  gap: 30px;
}

.projects-header-copy {
  padding: 28px 28px 26px 30px;
}

.projects-header-summary {
  padding: 26px 24px 22px;
}

.projects-media-card {
  width: min(100%, 450px);
  justify-self: center;
}

.projects-content-stack {
  gap: 18px;
}

.projects-focus-card {
  padding: 26px 24px 22px;
}

.project-service-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 249, 249, 0.98)),
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.05), transparent 44%);
}

.contact-connect-shell {
  gap: 30px;
}

.contact-connect-copy {
  gap: 18px;
}

.contact-connect-content-stack {
  gap: 17px;
}

.contact-connect-board {
  border-radius: 34px;
}

.contact-connect-form-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 249, 249, 0.99)),
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.05), transparent 40%);
}

.contact-connect-field input,
.contact-connect-field textarea {
  background: linear-gradient(180deg, #ffffff, #fffafa);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 6px 14px rgba(47, 42, 44, 0.025);
}

.contact-connect-status {
  max-width: 34ch;
}

.clients-showcase-copy {
  gap: 14px;
}

.clients-marquee {
  padding-block: 6px;
}

.client-logo-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 249, 249, 0.98)),
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.05), transparent 44%);
}

.client-logo-mark {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 8px 18px rgba(47, 42, 44, 0.05);
}

.footer-pro {
  gap: 28px;
}

.footer-pro-top {
  padding: 28px 30px;
}

.footer-pro-grid {
  gap: 18px;
}

.footer-pro-column {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 248, 0.98)),
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.04), transparent 46%);
}

.footer-pro-social a {
  box-shadow:
    0 10px 18px rgba(47, 42, 44, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

@media (max-width: 980px) {
  .container {
    width: min(1200px, calc(100% - 24px));
  }

  .section-space {
    padding-block: 68px;
  }

  .hero-image-overlay {
    inset: 36px 0 auto;
  }

  .projects-media-card {
    width: min(100%, 420px);
  }

  .contact-connect-visual {
    min-height: 280px;
  }
}

@media (max-width: 760px) {
  .section-space {
    padding-block: 60px;
  }

  .container {
    width: min(1200px, calc(100% - 20px));
  }

  .header-shell {
    padding: 10px 0 12px;
  }

  .hero-image-wrap,
  .trust-card,
  .about-story-panel,
  .about-timeline-card,
  .vision-copy,
  .vision-card,
  .founder-copy,
  .founder-message-card,
  .portrait-stage,
  .portrait-meta,
  .certificate-card,
  .product-card,
  .projects-header-copy,
  .projects-header-summary,
  .projects-media-card,
  .projects-focus-card,
  .project-service-card,
  .projects-client-band,
  .contact-connect-copy,
  .contact-connect-board,
  .contact-connect-card,
  .client-logo-card,
  .footer-pro-top,
  .footer-pro-column {
    border-radius: 22px;
  }

  .hero-image-overlay {
    inset: 24px 0 auto;
    padding: 0 18px;
  }

  .trust-highlight,
  .trust-block,
  .projects-header-copy,
  .projects-header-summary,
  .projects-focus-card,
  .project-service-card,
  .contact-connect-copy,
  .contact-connect-card,
  .footer-pro-top,
  .footer-pro-column {
    padding-inline: 18px;
  }

  .projects-media-card {
    width: 100%;
  }

  .contact-connect-visual {
    min-height: 220px;
  }

  .contact-connect-visual-panel strong {
    font-size: 0.95rem;
  }
}

/* Custom Projects Division redesign layer. */
.projects-division-header {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  margin-bottom: 20px;
}

.projects-header-copy {
  display: grid;
  align-content: start;
  gap: 16px;
  height: 100%;
  padding: 34px 34px 30px;
  border-radius: 32px;
  border: 1px solid rgba(229, 216, 220, 0.94);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.998), rgba(255, 249, 250, 0.993) 55%, rgba(255, 245, 247, 0.985)),
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.12), transparent 42%);
  box-shadow:
    0 30px 58px rgba(47, 42, 44, 0.082),
    0 10px 24px rgba(184, 62, 58, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.97);
}

.projects-header-copy .section-tag {
  margin: 0;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(184, 62, 58, 0.18);
  background: rgba(255, 248, 248, 0.97);
  color: #b83e3a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 10px 22px rgba(47, 42, 44, 0.05);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
}

.projects-header-copy h2 {
  margin: 0;
  max-width: 11.1ch;
  font-size: clamp(2.2rem, 3.3vw, 3rem);
  line-height: 1.01;
  letter-spacing: -0.046em;
  text-wrap: balance;
  color: var(--navy-dark);
}

.projects-header-copy::before {
  left: 34px;
  top: 18px;
  bottom: auto;
  width: 90px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b83e3a, rgba(184, 62, 58, 0.18));
}

.projects-header-copy::after {
  width: 210px;
  height: 210px;
  right: -58px;
  bottom: -78px;
  background: radial-gradient(circle, rgba(184, 62, 58, 0.11), rgba(184, 62, 58, 0.012) 58%, transparent 72%);
}

.projects-header-summary {
  display: grid;
  align-content: start;
  height: 100%;
  padding: 24px 26px 22px;
  border-radius: 28px;
  box-shadow:
    0 22px 42px rgba(47, 42, 44, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.97);
}

.projects-division-board {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}

.projects-media-stack {
  display: grid;
  gap: 18px;
  align-content: start;
  align-self: stretch;
  height: 100%;
  grid-template-rows: minmax(390px, 0.58fr) minmax(0, 0.42fr);
  padding: 18px;
  border-radius: 32px;
  border: 1px solid rgba(234, 220, 223, 0.86);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(255, 247, 248, 0.97)),
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.08), transparent 38%);
  box-shadow:
    0 28px 54px rgba(47, 42, 44, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.projects-media-card {
  width: 100%;
  justify-self: stretch;
  margin-top: 0;
  border-radius: 28px;
  box-shadow:
    0 24px 48px rgba(47, 42, 44, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.projects-media-card::before {
  inset: auto 18px -18px 26px;
  height: 56%;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(184, 62, 58, 0.14), rgba(184, 62, 58, 0.02));
}

.projects-media-card::after {
  inset: 12px;
  border-radius: 20px;
}

.projects-media-card img:not(.projects-media-slide) {
  transform: none;
}

.projects-media-card-primary {
  height: 100%;
  min-height: 390px;
  aspect-ratio: auto;
}

.projects-media-slider {
  isolation: isolate;
}

.projects-media-slides {
  position: absolute;
  inset: 0;
  isolation: isolate;
  overflow: hidden;
}

.projects-media-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transform: translate3d(22px, 0, 0) scale(1.06);
  transform-origin: center center;
  will-change: opacity, transform;
  backface-visibility: hidden;
  filter: saturate(0.98) contrast(0.985);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1800ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms ease;
}

.projects-media-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
  transform: translate3d(0, 0, 0) scale(1.01);
  filter: saturate(1) contrast(1);
}

.projects-media-slider-dots {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(233, 219, 221, 0.88);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 30px rgba(47, 42, 44, 0.12);
  backdrop-filter: blur(10px);
}

.projects-media-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(47, 42, 44, 0.18);
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.projects-media-slider-dot.is-active {
  background: #b83e3a;
  transform: scale(1.15);
  box-shadow: 0 0 0 5px rgba(184, 62, 58, 0.12);
}

.projects-media-support {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(150px, 0.58fr);
  gap: 14px;
  align-items: start;
  min-height: 0;
}

.projects-media-card-secondary {
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
}

.projects-media-card-secondary img {
  object-position: center 44%;
}

.projects-media-badge,
.projects-media-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  padding: 14px 16px 13px;
  border-radius: 20px;
  border: 1px solid rgba(234, 220, 223, 0.86);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 249, 0.92)),
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.08), transparent 44%);
  box-shadow:
    0 18px 30px rgba(47, 42, 44, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}

.projects-media-badge span,
.projects-media-caption span {
  display: inline-block;
  margin-bottom: 6px;
  color: #b83e3a;
  font-family: "Barlow", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.projects-media-badge strong,
.projects-media-caption strong {
  display: block;
  color: var(--navy);
  font-size: 0.94rem;
  line-height: 1.32;
}

.projects-media-note {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  height: auto;
  align-self: start;
  margin-top: 0;
  padding: 15px 15px 14px;
  border-radius: 22px;
  border: 1px solid rgba(234, 220, 223, 0.86);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(255, 248, 249, 0.982)),
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.08), transparent 40%);
  box-shadow:
    0 20px 38px rgba(47, 42, 44, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.projects-media-note::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #b83e3a, rgba(184, 62, 58, 0));
}

.projects-media-note h3 {
  margin: 0;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.012em;
  max-width: 13ch;
}

.projects-media-note-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.projects-media-note-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid #eadcdf;
  background: linear-gradient(180deg, #ffffff, #fff6f7);
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.015em;
}

.projects-media-note .mini-label {
  margin: 0;
  color: #b83e3a;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.projects-content-stack {
  gap: 20px;
  margin-top: 0;
}

.projects-focus-card {
  padding: 28px 28px 24px;
  border-radius: 30px;
  box-shadow:
    0 24px 46px rgba(47, 42, 44, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.projects-focus-card h3 {
  max-width: 21ch;
  font-size: 1.6rem;
}

.projects-focus-card > p {
  max-width: 58ch;
  font-size: 0.96rem;
}

.projects-highlight-list li {
  padding-left: 16px;
  font-size: 0.94rem;
}

.projects-key-stats {
  gap: 14px;
  margin-top: 20px;
}

.projects-key-stats article,
.project-service-card {
  border-radius: 24px;
  box-shadow:
    0 18px 34px rgba(47, 42, 44, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.projects-key-stats article {
  min-height: 118px;
}

.projects-division-grid {
  gap: 18px;
}

.project-service-card {
  padding: 24px 22px 22px;
}

.project-service-card h3 {
  font-size: 1.08rem;
}

.project-service-card p:last-child {
  font-size: 0.89rem;
}

.projects-client-band {
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: 20px;
  align-items: stretch;
  padding: 20px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.998), rgba(255, 247, 248, 0.986)),
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.08), transparent 38%);
  box-shadow:
    0 26px 50px rgba(47, 42, 44, 0.065),
    inset 0 1px 0 rgba(255, 255, 255, 0.97);
}

.projects-client-band::before {
  display: none;
}

.projects-client-band::after {
  display: none;
}

.projects-client-intro {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 36px 32px 30px;
  border-radius: 28px;
  border: 1px solid rgba(229, 216, 220, 0.94);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.998), rgba(255, 250, 250, 0.992) 56%, rgba(255, 246, 247, 0.984)),
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.12), transparent 40%),
    radial-gradient(circle at right bottom, rgba(47, 42, 44, 0.035), transparent 30%);
  box-shadow:
    0 28px 56px rgba(47, 42, 44, 0.082),
    0 10px 24px rgba(184, 62, 58, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.97);
}

.projects-client-intro::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 32px;
  width: 86px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b83e3a, rgba(184, 62, 58, 0.22));
}

.projects-client-intro::after {
  content: "";
  position: absolute;
  top: -84px;
  right: -88px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 62, 58, 0.135), rgba(184, 62, 58, 0.028) 60%, transparent 74%);
  pointer-events: none;
}

.projects-client-intro > * {
  position: relative;
  z-index: 1;
}

.projects-client-intro .mini-label {
  margin: 0;
  width: fit-content;
  padding: 8px 14px;
  border: 1px solid rgba(184, 62, 58, 0.18);
  border-radius: 999px;
  background: rgba(255, 248, 248, 0.97);
  color: #b83e3a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 10px 22px rgba(47, 42, 44, 0.05);
}

.projects-client-intro h3 {
  margin: 0;
  max-width: 13ch;
  color: var(--navy-dark);
  font-size: 1.74rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.projects-client-intro h3.projects-heading-three-line {
  max-width: none;
  display: grid;
  gap: 4px;
  line-height: 1;
}

.projects-client-intro .projects-heading-line {
  display: block;
  white-space: nowrap;
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy-dark);
}

.projects-client-intro-text {
  margin: 0;
  max-width: 35ch;
  color: #5c5155;
  font-size: 0.95rem;
  line-height: 1.76;
}

.projects-client-intro-text + .projects-client-intro-text {
  padding-top: 16px;
  border-top: 1px solid rgba(232, 220, 223, 0.88);
}

.projects-client-intro-text-muted {
  color: #71666a;
  font-size: 0.89rem;
  line-height: 1.7;
}

.projects-client-groups {
  display: grid;
  gap: 14px;
  align-content: start;
}

.projects-client-group {
  display: grid;
  gap: 12px;
  padding: 18px 18px 16px;
  border-radius: 24px;
  border: 1px solid rgba(234, 220, 223, 0.84);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.994), rgba(255, 250, 250, 0.985)),
    radial-gradient(circle at top right, rgba(184, 62, 58, 0.05), transparent 40%);
  box-shadow:
    0 16px 30px rgba(47, 42, 44, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.projects-client-group-label {
  margin: 0;
  color: var(--muted);
  font-family: "Barlow", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.projects-client-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.projects-client-list span {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #eadcdf;
  box-shadow:
    0 10px 20px rgba(47, 42, 44, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.projects-client-list-sectors span {
  background:
    linear-gradient(180deg, rgba(184, 62, 58, 0.09), rgba(184, 62, 58, 0.03)),
    linear-gradient(180deg, #ffffff, #fff7f8);
  color: #922f2c;
}

.projects-client-list-sectors {
  align-items: flex-start;
}

.projects-sector-chip {
  position: relative;
}

.projects-sector-chip-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #eadcdf;
  background:
    linear-gradient(180deg, rgba(184, 62, 58, 0.09), rgba(184, 62, 58, 0.03)),
    linear-gradient(180deg, #ffffff, #fff7f8);
  box-shadow:
    0 10px 20px rgba(47, 42, 44, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  color: #922f2c;
  font: inherit;
  font-family: "Barlow", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.projects-sector-chip:hover .projects-sector-chip-trigger,
.projects-sector-chip:focus-within .projects-sector-chip-trigger {
  transform: translateY(-2px);
  border-color: #dfc8cc;
  box-shadow:
    0 14px 24px rgba(47, 42, 44, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.projects-sector-popup {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 20;
  width: min(340px, 28vw);
  padding: 14px;
  border: 1px solid rgba(231, 216, 219, 0.94);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.996), rgba(255, 248, 249, 0.987)),
    radial-gradient(circle at top right, rgba(184, 62, 58, 0.07), transparent 36%);
  box-shadow:
    0 28px 56px rgba(47, 42, 44, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px) scale(0.98);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.projects-sector-popup::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-top: 1px solid rgba(231, 216, 219, 0.94);
  border-left: 1px solid rgba(231, 216, 219, 0.94);
  background: rgba(255, 251, 251, 0.98);
  transform: translateX(-50%) rotate(45deg);
}

.projects-sector-chip:hover .projects-sector-popup,
.projects-sector-chip:focus-within .projects-sector-popup {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.projects-sector-popup-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-family: "Barlow", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.projects-sector-popup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.projects-sector-popup-item {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 10px;
  border: 1px solid rgba(234, 220, 223, 0.94);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.998), rgba(255, 250, 250, 0.986)),
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.04), transparent 42%);
  box-shadow:
    0 10px 18px rgba(47, 42, 44, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.projects-sector-popup-item img {
  width: auto;
  max-width: 100%;
  height: 28px;
  justify-self: center;
  object-fit: contain;
}

.projects-sector-popup-item strong {
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.22;
  text-align: center;
}

.projects-client-list-accounts span {
  background:
    linear-gradient(180deg, #ffffff, #fff9fa),
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.04), transparent 36%);
  color: var(--navy);
  font-weight: 700;
}

.projects-client-list-accounts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.projects-account-card {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 12px;
  border: 1px solid #eadcdf;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.996), rgba(255, 249, 250, 0.986)),
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.045), transparent 40%);
  box-shadow:
    0 12px 22px rgba(47, 42, 44, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.projects-account-logo {
  display: grid;
  place-items: center;
  min-height: 60px;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid #efe0e2;
  background:
    linear-gradient(180deg, #ffffff, #fff7f8),
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.05), transparent 42%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 8px 16px rgba(47, 42, 44, 0.03);
}

.projects-account-logo img {
  width: auto;
  max-width: 100%;
  max-height: 32px;
  object-fit: contain;
  transform-origin: center;
  animation: project-logo-twinkle 3.9s ease-in-out infinite;
  will-change: transform, opacity, filter;
}

.projects-account-logo img[src$="abb.svg"] {
  max-width: 88px;
  max-height: 46px;
}

.projects-account-logo img[src$="iocl-favicon.png"] {
  max-width: 54px;
  max-height: 54px;
}

.projects-account-card strong {
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 0.81rem;
  font-weight: 700;
  line-height: 1.22;
  text-align: center;
}

.projects-account-card:nth-child(2n) .projects-account-logo img {
  animation-delay: 0.7s;
}

.projects-account-card:nth-child(3n) .projects-account-logo img {
  animation-delay: 1.4s;
}

.projects-account-card:nth-child(5n) .projects-account-logo img {
  animation-delay: 2.1s;
}

@keyframes project-logo-twinkle {
  0%,
  100% {
    opacity: 0.92;
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(184, 62, 58, 0));
  }

  22% {
    opacity: 1;
    transform: scale(1.03);
    filter: drop-shadow(0 0 8px rgba(184, 62, 58, 0.18));
  }

  28% {
    opacity: 0.98;
    transform: scale(1.055);
    filter: drop-shadow(0 0 16px rgba(184, 62, 58, 0.26));
  }

  42% {
    opacity: 0.95;
    transform: scale(1.01);
    filter: drop-shadow(0 0 6px rgba(184, 62, 58, 0.12));
  }
}

@media (max-width: 1180px) {
  .projects-division-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .projects-media-stack {
    grid-template-rows: minmax(340px, 0.56fr) minmax(0, 0.44fr);
  }

  .projects-media-card-primary {
    min-height: 340px;
  }

  .projects-media-support {
    grid-template-columns: minmax(0, 1.28fr) minmax(150px, 0.72fr);
  }

  .projects-media-card-secondary {
    min-height: 0;
  }

  .projects-media-note {
    margin-top: 0;
  }
}

@media (max-width: 980px) {
  .projects-division-board {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }

  .projects-header-copy {
    padding: 24px 22px 22px 26px;
  }

  .projects-header-summary {
    padding: 22px 20px 20px;
  }

  .projects-media-stack {
    height: auto;
    grid-template-rows: none;
    padding: 16px;
  }

  .projects-media-support {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .projects-media-card-primary {
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .projects-media-slider-dots {
    top: 14px;
    right: 14px;
    padding: 8px 10px;
    gap: 6px;
  }

  .projects-media-loader__icon svg {
    width: 34px;
    height: 34px;
  }

  .projects-media-slider-dot {
    width: 7px;
    height: 7px;
  }

  .projects-media-card-secondary {
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .projects-focus-card {
    padding: 24px 22px 22px;
  }

  .projects-division-grid {
    grid-template-columns: 1fr;
  }

  .projects-client-list-accounts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .projects-header-copy,
  .projects-header-summary,
  .projects-focus-card,
  .project-service-card,
  .projects-client-band {
    border-radius: 22px;
  }

  .projects-header-copy {
    padding: 22px 18px 20px 22px;
  }

  .projects-header-summary {
    padding: 18px 16px 16px;
  }

  .projects-media-stack {
    height: auto;
    padding: 14px;
  }

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

  .projects-media-card,
  .projects-media-card-primary,
  .projects-media-card-secondary,
  .projects-media-note {
    width: 100%;
    aspect-ratio: auto;
    border-radius: 22px;
  }

  .projects-media-note {
    margin-top: 0;
  }

  .projects-media-card-primary {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .projects-media-slider-dots {
    top: 12px;
    right: 12px;
    padding: 7px 9px;
  }

  .projects-media-loader__icon svg {
    width: 30px;
    height: 30px;
  }

  .projects-media-card-secondary {
    min-height: 260px;
  }

  .projects-media-badge,
  .projects-media-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px 14px 13px;
    border-radius: 18px;
  }

  .projects-focus-card {
    padding: 22px 18px 20px;
  }

  .projects-focus-card h3 {
    font-size: 1.38rem;
  }

  .projects-client-band {
    padding: 22px 18px;
  }

  .projects-client-intro-text,
  .projects-client-intro-text-muted {
    max-width: 100%;
  }

  .projects-client-intro h3.projects-heading-three-line {
    gap: 3px;
  }

  .projects-client-intro .projects-heading-line {
    white-space: normal;
  }

  .projects-client-list-accounts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .projects-account-card {
    padding: 12px;
    border-radius: 16px;
  }

  .projects-account-logo {
    min-height: 60px;
    padding: 8px 10px;
    border-radius: 12px;
  }

  .projects-account-logo img {
    max-width: 100%;
    max-height: 28px;
  }
}

/* Custom founder portrait badge alignment fix. */
.portrait-stage .portrait-support {
  display: block;
}

.portrait-stage .portrait-badge {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  width: auto;
  max-width: none;
  margin: 0;
}

@media (max-width: 760px) {
  .portrait-stage .portrait-badge {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
}

/* Custom footer redesign phase before the final premium pass. */
.site-footer {
  background:
    linear-gradient(180deg, #faf5f5 0%, #fffdfd 26%, #ffffff 100%);
  border-top: 1px solid rgba(234, 220, 223, 0.9);
}

.footer-pro {
  gap: 20px;
  padding-top: 34px;
  padding-bottom: 24px;
}

.footer-pro-top,
.footer-pro-grid,
.footer-pro-bottom {
  position: relative;
  z-index: 1;
}

.footer-pro-top {
  grid-template-columns: minmax(0, 1.35fr) auto;
  gap: 24px;
  align-items: end;
  padding: 0 0 20px;
  border: 0;
  border-bottom: 1px solid #eadcdf;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.footer-pro-top::before {
  display: none;
}

.footer-pro-brand {
  gap: 14px;
}

.footer-logo {
  width: min(260px, 100%);
  height: auto;
}

.footer-pro-brand p {
  max-width: 60ch;
  color: #5f5659;
  font-size: 0.96rem;
  line-height: 1.72;
}

.footer-pro-tags {
  gap: 8px;
}

.footer-pro-tags span {
  padding: 8px 12px;
  border: 1px solid #ecdadd;
  background: #fff7f7;
  color: #5a5255;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: none;
}

.footer-pro-actions {
  align-items: flex-start;
  justify-content: flex-end;
}

.footer-pro-button {
  min-width: 176px;
  min-height: 46px;
}

.footer-pro-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.2fr) auto;
  gap: 28px;
  align-items: start;
}

.footer-pro-column {
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.footer-pro-column::before {
  display: none;
}

.footer-pro-column h3 {
  margin: 0 0 8px;
  color: #b83e3a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-pro-column a,
.footer-pro-column span {
  color: #4f474a;
  font-size: 0.95rem;
  line-height: 1.68;
}

.footer-pro-column a:hover {
  color: #b83e3a;
}

.footer-pro-contact a,
.footer-pro-bottom-links a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-inline-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
}

.footer-pro-social {
  gap: 12px;
  padding-top: 4px;
}

.footer-pro-social a {
  width: 46px;
  height: 46px;
  border: 1px solid #e8d7da;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 248, 0.98)),
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.05), transparent 44%);
  box-shadow:
    0 12px 24px rgba(47, 42, 44, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.footer-pro-social a:hover {
  transform: translateY(-2px);
  border-color: #dcb6ba;
  background: #fff4f4;
}

.footer-pro-bottom {
  gap: 14px 20px;
  padding: 18px 0 0;
  border-top: 1px solid #eadcdf;
}

.footer-pro-bottom p {
  color: #8c8185;
  font-size: 0.88rem;
}

.footer-pro-bottom-links {
  gap: 14px;
}

.footer-pro-bottom-links a {
  color: #645c5f;
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .footer-pro-top {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-pro-actions {
    justify-content: flex-start;
  }

  .footer-pro-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (max-width: 760px) {
  .footer-pro {
    gap: 16px;
    padding-top: 28px;
    padding-bottom: 20px;
  }

  .footer-pro-top {
    gap: 18px;
    padding-bottom: 18px;
  }

  .footer-pro-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-pro-button {
    width: 100%;
    min-width: 0;
  }

  .footer-pro-social a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .footer-pro-bottom {
    justify-content: flex-start;
    align-items: flex-start;
  }
}

/* Custom site-wide refinement pass. */
body {
  background:
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.055), transparent 24%),
    radial-gradient(circle at bottom right, rgba(47, 42, 44, 0.04), transparent 22%),
    linear-gradient(180deg, #fffdfd 0%, #fff8f8 34%, #ffffff 100%);
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(47, 42, 44, 0.07);
}

.header-shell {
  gap: 14px;
}

.header-navrow {
  gap: 28px;
}

.site-nav a {
  position: relative;
  padding-bottom: 8px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b83e3a, rgba(184, 62, 58, 0));
  opacity: 0;
  transform: scaleX(0.25);
  transform-origin: left center;
  transition: opacity 200ms ease, transform 200ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.meta-card {
  box-shadow:
    0 16px 30px rgba(47, 42, 44, 0.055),
    0 6px 14px rgba(184, 62, 58, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.97);
}

.hero-image-wrap,
.about-stage-frame,
.vision-frame,
.portrait-frame,
.product-card-media,
.certificate-preview,
.projects-media-card,
.contact-connect-visual,
.clients-marquee {
  border: 1px solid rgba(232, 220, 223, 0.92);
  box-shadow:
    0 24px 50px rgba(47, 42, 44, 0.085),
    0 10px 24px rgba(184, 62, 58, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.hero-image-wrap {
  border-radius: 32px;
  overflow: hidden;
}

.hero-image-overlay {
  inset: 44px 0 auto;
}

.button.primary,
.contact-connect-button.primary,
.footer-pro-button {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.button.primary:hover,
.contact-connect-button.primary:hover,
.footer-pro-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(184, 62, 58, 0.24);
}

.hero-brochure {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.hero-brochure:hover,
.hero-brochure:focus-visible {
  transform: translateY(calc(-50% - 2px)) rotate(180deg);
  box-shadow: 0 22px 40px rgba(184, 62, 58, 0.24);
}

.trust-card,
.about-story-panel,
.about-timeline-card,
.vision-copy,
.founder-copy,
.founder-message-card,
.portrait-stage,
.portrait-meta,
.partner-deck-frame,
.certificate-card,
.product-card,
.projects-header-copy,
.projects-header-summary,
.projects-focus-card,
.project-service-card,
.projects-client-band,
.contact-connect-copy,
.contact-connect-board,
.contact-connect-card,
.client-logo-card {
  border: 1px solid rgba(232, 220, 223, 0.94);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.998), rgba(255, 249, 250, 0.992) 56%, rgba(255, 245, 247, 0.985)),
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.08), transparent 42%);
  box-shadow:
    0 28px 58px rgba(47, 42, 44, 0.08),
    0 10px 24px rgba(184, 62, 58, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.97);
}

.product-card,
.project-service-card,
.contact-connect-card,
.client-logo-card,
.certificate-card {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.product-card:hover,
.project-service-card:hover,
.contact-connect-card:hover,
.client-logo-card:hover,
.certificate-card:hover {
  transform: translateY(-4px);
  border-color: rgba(220, 182, 186, 0.95);
  box-shadow:
    0 30px 62px rgba(47, 42, 44, 0.11),
    0 14px 28px rgba(184, 62, 58, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.product-card-media,
.certificate-preview {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.992), rgba(255, 249, 250, 0.97));
}

.projects-header-summary p,
.projects-focus-card p,
.project-service-card p,
.contact-connect-content-stack > p:last-of-type,
.clients-showcase-copy p:last-child,
.footer-pro-brand p {
  color: #5d5458;
}

.projects-header-pills span,
.projects-media-note-tags span,
.projects-client-list span,
.footer-pro-tags span {
  border-color: rgba(230, 216, 220, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 8px 16px rgba(47, 42, 44, 0.04);
}

.contact-connect-board {
  padding: 18px;
}

.contact-connect-form-card {
  border-radius: 28px;
}

.contact-connect-field input,
.contact-connect-field textarea {
  border-color: rgba(228, 214, 218, 0.96);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.998), rgba(255, 248, 249, 0.985));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 8px 18px rgba(47, 42, 44, 0.025);
}

.contact-connect-field input:focus,
.contact-connect-field textarea:focus {
  border-color: rgba(184, 62, 58, 0.42);
  box-shadow:
    0 0 0 4px rgba(184, 62, 58, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.clients-marquee {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.998), rgba(255, 249, 250, 0.988)),
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.055), transparent 40%);
}

.client-logo-card {
  min-height: 112px;
}

.footer-pro {
  gap: 22px;
}

.footer-pro-top {
  padding-bottom: 22px;
}

.footer-pro-social a {
  box-shadow:
    0 14px 28px rgba(47, 42, 44, 0.065),
    0 6px 18px rgba(184, 62, 58, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.footer-pro-bottom {
  padding-top: 20px;
}

@media (max-width: 980px) {
  .site-header {
    backdrop-filter: blur(14px);
  }

  .hero-image-overlay {
    inset: 34px 0 auto;
  }

  .contact-connect-board {
    padding: 14px;
  }
}

@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    background:
      radial-gradient(circle at top left, rgba(184, 62, 58, 0.08), transparent 28%),
      linear-gradient(180deg, #fffdfd 0%, #fff7f8 34%, #ffffff 100%);
  }

  .container {
    width: min(100% - 28px, 470px);
  }

  .section-space {
    padding-block: 56px;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(233, 220, 223, 0.92);
    box-shadow: 0 14px 30px rgba(47, 42, 44, 0.08);
  }

  .header-shell {
    position: relative;
    gap: 10px;
    padding-block: 12px;
  }

  .header-topbar {
    gap: 12px;
    align-items: center;
  }

  .brand-logo {
    width: 116px;
  }

  .header-meta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    min-width: 52px;
    height: 48px;
    min-height: 48px;
    padding: 0;
    border: 1px solid rgba(225, 207, 211, 0.98);
    border-radius: 16px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(255, 246, 247, 0.99)),
      radial-gradient(circle at top left, rgba(184, 62, 58, 0.08), transparent 48%);
    box-shadow:
      0 12px 26px rgba(47, 42, 44, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.97);
  }

  .header-navrow {
    position: relative;
    min-height: 0;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px;
    border-radius: 24px;
    border: 1px solid rgba(232, 220, 223, 0.96);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.998), rgba(255, 247, 248, 0.99)),
      radial-gradient(circle at top left, rgba(184, 62, 58, 0.08), transparent 40%);
    box-shadow:
      0 22px 46px rgba(47, 42, 44, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top center;
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-nav a {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(236, 225, 228, 0.96);
    font-size: 0.98rem;
    font-weight: 700;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a + a::before,
  .site-nav a::after {
    display: none;
  }

  .hero-section {
    padding-top: 18px;
  }

  .hero-shell {
    gap: 14px;
  }

  .hero-image-wrap {
    min-height: 430px;
    border-radius: 26px;
    background:
      radial-gradient(circle at top center, rgba(184, 62, 58, 0.08), transparent 34%),
      linear-gradient(180deg, #ffffff 0%, #fff7f8 100%);
  }

  .hero-image {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 108px 12px 18px;
    object-fit: contain;
    object-position: center bottom;
  }

  .hero-image-overlay {
    inset: 16px 16px auto;
    display: grid;
    gap: 8px;
    max-width: 320px;
    padding: 0;
    border-radius: 0;
    background: none;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .hero-image-overlay h1 {
    margin: 0;
    max-width: 11ch;
    font-size: clamp(2rem, 8.2vw, 2.5rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    text-wrap: balance;
  }

  .hero-image-overlay h2 {
    margin: 0;
    max-width: 28ch;
    font-size: 0.94rem;
    line-height: 1.32;
    letter-spacing: 0.01em;
  }

  .hero-brandline {
    gap: 10px;
    margin-bottom: 2px;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
  }

  .hero-brandline::before,
  .hero-brandline::after {
    width: 28px;
  }

  .hero-brochure {
    position: static;
    width: 100%;
    justify-content: center;
    min-height: 50px;
    border-radius: 16px;
  }

  .hero-actions-rail {
    position: static;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    margin: 0 auto;
  }

  .hero-fab {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .trust-band {
    margin-top: -8px;
  }

  .trust-card {
    gap: 14px;
    padding: 18px;
    border-radius: 28px;
  }

  .trust-highlight {
    gap: 2px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(234, 220, 223, 0.96);
  }

  .trust-highlight strong {
    font-size: clamp(3.2rem, 17vw, 4.4rem);
    line-height: 0.9;
  }

  .trust-highlight span {
    max-width: none;
    font-size: 0.98rem;
  }

  .trust-block {
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 252, 252, 0.9);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.95),
      0 10px 22px rgba(47, 42, 44, 0.04);
  }

  .trust-inline-grid,
  .partner-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-redesign,
  .vision-shell,
  .leadership-grid,
  .standards-shell,
  .products-grid,
  .projects-division-header,
  .projects-division-board,
  .projects-client-band,
  .contact-connect-shell,
  .footer-pro-top,
  .footer-pro-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-redesign {
    display: grid;
  }

  .about-story-panel {
    order: 1;
    padding: 24px 22px 22px;
    border-radius: 28px;
  }

  .about-story-panel::before {
    left: 22px;
    top: 16px;
    bottom: auto;
    width: 78px;
    height: 4px;
    box-shadow: none;
  }

  .vision-copy .section-tag {
    min-height: 38px;
    padding: 0 16px;
    margin-bottom: 14px;
    font-size: 1.05rem;
    letter-spacing: 0.12em;
  }

  .about-story-panel .section-tag {
    min-height: 36px;
    padding: 0 16px;
    margin-bottom: 14px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
  }

  .about-story-panel h2,
  .vision-copy h2,
  .founder-copy h2,
  .standards-copy h2,
  .clients-showcase-copy h2,
  .contact-connect-content-stack h2,
  .projects-header-copy h2 {
    margin: 0 0 14px;
    font-size: clamp(2.02rem, 9.2vw, 2.8rem);
    line-height: 1;
    letter-spacing: -0.04em;
    text-wrap: balance;
  }

  .about-story-panel p,
  .vision-copy p,
  .founder-copy p,
  .projects-header-summary p,
  .contact-connect-content-stack > p:last-of-type,
  .clients-showcase-copy p:last-child,
  .standards-copy p {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .about-capability-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-proof-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .about-proof-strip article {
    min-height: auto;
    padding: 14px 10px;
    border-radius: 18px;
  }

  .about-visual-column {
    order: 2;
  }

  .about-stage-frame {
    aspect-ratio: 1 / 1.04;
    border-radius: 28px;
  }

  .about-stage-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .about-timeline-card {
    margin-top: 12px;
    padding: 18px;
    border-radius: 24px;
  }

  .about-timeline-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .vision-shell {
    display: grid;
  }

  .vision-copy {
    order: 1;
    padding: 24px 22px 22px;
    border-radius: 28px;
  }

  .vision-copy::before {
    left: 22px;
    top: 16px;
    bottom: auto;
    width: 82px;
    height: 4px;
    box-shadow: none;
  }

  .vision-visual {
    order: 2;
  }

  .vision-frame {
    aspect-ratio: 1 / 1.05;
    border-radius: 28px;
  }

  .vision-note {
    margin-top: 12px;
    padding: 16px;
    border-radius: 22px;
  }

  .vision-card-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .founder-copy {
    padding: 26px 22px 22px;
    border-radius: 28px;
  }

  .founder-copy::before {
    left: 22px;
    top: 16px;
    bottom: auto;
    width: 84px;
    height: 4px;
    box-shadow: none;
  }

  .founder-message-card {
    padding: 18px;
    border-radius: 22px;
  }

  .founder-principles,
  .portrait-meta-tags {
    justify-content: center;
    gap: 8px;
  }

  .portrait-card {
    gap: 14px;
  }

  .portrait-stage {
    padding: 16px;
    border-radius: 28px;
  }

  .portrait-frame {
    width: 100%;
    aspect-ratio: 1 / 1.05;
    border-radius: 24px;
  }

  .portrait-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .portrait-support {
    width: 100%;
  }

  .portrait-meta {
    padding: 18px;
    border-radius: 22px;
  }

  .standards-copy {
    padding: 24px 22px;
    border-radius: 28px;
    border: 1px solid rgba(232, 220, 223, 0.96);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.998), rgba(255, 247, 248, 0.992)),
      radial-gradient(circle at top left, rgba(184, 62, 58, 0.08), transparent 42%);
    box-shadow:
      0 24px 46px rgba(47, 42, 44, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
  }

  .certificate-marquee {
    grid-column: auto;
    grid-row: auto;
    overflow-x: auto;
    padding: 2px 0 8px;
    border: 0;
    box-shadow: none;
    background: none;
    mask-image: none;
    -webkit-mask-image: none;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .certificate-marquee::-webkit-scrollbar {
    display: none;
  }

  .certificate-marquee::before,
  .certificate-marquee::after {
    display: none;
  }

  .certificate-track {
    gap: 14px;
    width: max-content;
    padding: 4px 0 8px;
    animation: none;
  }

  .certificate-card {
    width: 214px;
    flex: 0 0 214px;
    border-radius: 20px;
    scroll-snap-align: start;
  }

  .partnerships-showcase {
    gap: 20px;
  }

  .partnerships-head {
    text-align: left;
  }

  .partner-deck-shell {
    min-height: 420px;
    padding: 0 44px 12px;
  }

  .partner-deck {
    min-height: 390px;
  }

  .partner-deck-frame {
    min-height: auto;
    border-radius: 24px;
  }

  .partner-nav {
    width: 42px;
    height: 42px;
  }

  .products-grid {
    gap: 14px;
  }

  .product-card {
    padding: 22px 20px 20px;
    border-radius: 24px;
  }

  .product-card-media {
    aspect-ratio: 4 / 3;
    border-radius: 20px;
  }

  .product-card h3 {
    font-size: 1.38rem;
  }

  .product-card ul {
    gap: 6px;
  }

  .projects-division-header {
    gap: 16px;
  }

  .projects-header-copy,
  .projects-header-summary,
  .projects-focus-card,
  .projects-client-band {
    border-radius: 28px;
  }

  .projects-header-copy {
    padding: 24px 22px 22px;
    gap: 14px;
  }

  .projects-header-copy::before {
    left: 22px;
    top: 16px;
    width: 82px;
    height: 4px;
  }

  .projects-header-summary {
    padding: 20px 18px;
    gap: 14px;
  }

  .projects-header-pills {
    gap: 8px;
  }

  .projects-header-pills span {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .projects-division-board {
    gap: 18px;
  }

  .projects-media-stack,
  .projects-content-stack {
    gap: 14px;
  }

  .projects-media-card {
    width: 100%;
    border-radius: 24px;
  }

  .projects-media-card-primary {
    aspect-ratio: 1 / 1.04;
  }

  .projects-media-card-secondary {
    aspect-ratio: 1 / 1.02;
  }

  .projects-media-support {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .projects-media-note {
    max-width: none;
    min-height: auto;
    padding: 16px;
    border-radius: 20px;
  }

  .projects-media-note h3,
  .projects-focus-card h3,
  .project-service-card h3,
  .projects-client-intro h3 {
    font-size: 1.34rem;
    line-height: 1.16;
  }

  .projects-focus-card {
    padding: 20px 18px;
    gap: 14px;
  }

  .projects-highlight-list {
    gap: 10px;
  }

  .projects-key-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .projects-key-stats article {
    padding: 14px 10px;
    border-radius: 18px;
  }

  .projects-division-grid,
  .contact-connect-board {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .project-service-card {
    padding: 18px 16px;
    border-radius: 22px;
  }

  .projects-client-band {
    padding: 20px 18px;
    gap: 14px;
  }

  .projects-heading-three-line {
    gap: 0;
  }

  .projects-heading-line {
    font-size: 1.34rem;
    line-height: 1.1;
  }

  .projects-client-groups {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .projects-client-group {
    padding: 16px;
    border-radius: 20px;
  }

  .projects-client-list-sectors {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .projects-sector-popup {
    display: none;
  }

  .projects-account-card {
    grid-template-columns: 56px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
  }

  .projects-account-logo {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .contact-connect-shell {
    gap: 18px;
  }

  .contact-connect-copy {
    padding: 18px;
    border-radius: 28px;
  }

  .contact-connect-visual {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
  }

  .contact-connect-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .contact-connect-visual-panel {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
    border-radius: 20px;
  }

  .contact-connect-content-stack {
    gap: 14px;
  }

  .contact-connect-whatsapp-box {
    padding: 16px;
    border-radius: 20px;
  }

  .contact-connect-actions {
    grid-template-columns: 1fr;
  }

  .contact-connect-button {
    width: 100%;
  }

  .contact-connect-board {
    padding: 14px;
    border-radius: 28px;
  }

  .contact-connect-card {
    padding: 18px;
    border-radius: 22px;
  }

  .contact-connect-form-grid,
  .contact-connect-form-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .clients-showcase-shell {
    gap: 18px;
  }

  .clients-showcase-copy {
    text-align: left;
    padding-inline: 2px;
  }

  .clients-marquee {
    padding: 12px;
    border-radius: 24px;
  }

  .clients-marquee-row {
    animation-duration: 108s;
  }

  .clients-marquee-set {
    gap: 12px;
    padding-right: 12px;
  }

  .client-logo-card {
    min-width: 146px;
    min-height: 96px;
    padding: 14px 12px;
    border-radius: 20px;
  }

  .client-logo-mark,
  .projects-account-logo img {
    max-width: 100%;
    max-height: 30px;
  }

  .footer-pro {
    gap: 18px;
    padding-top: 28px;
    padding-bottom: 18px;
  }

  .footer-pro-top {
    gap: 16px;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: none;
  }

  .footer-pro-brand,
  .footer-pro-column {
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(232, 220, 223, 0.96);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.998), rgba(255, 248, 249, 0.99)),
      radial-gradient(circle at top left, rgba(184, 62, 58, 0.07), transparent 44%);
    box-shadow:
      0 18px 36px rgba(47, 42, 44, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
  }

  .footer-pro-actions {
    display: none;
  }

  .footer-pro-grid {
    gap: 14px;
  }

  .footer-pro-column {
    gap: 10px;
  }

  .footer-pro-social {
    gap: 10px;
  }

  .footer-pro-social a {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .footer-pro-bottom,
  .footer-pro-bottom-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (min-width: 761px) {
  .hero-section {
    background:
      radial-gradient(circle at left top, rgba(207, 49, 52, 0.08), transparent 24%),
      radial-gradient(circle at right bottom, rgba(47, 42, 44, 0.035), transparent 22%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 245, 245, 0.88)),
      url("assets/images/hero-abstract-bg.png?v=20260329-safe");
    background-size: auto, auto, auto, 1480px auto;
    background-repeat: no-repeat;
    background-position: left top, right bottom, center, center 14px;
  }

  .hero-image-wrap {
    isolation: isolate;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 249, 249, 0.94));
  }

  .hero-image {
    z-index: 1;
  }

  .hero-image-wrap::after {
    z-index: 2;
    opacity: 0.16;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)),
      url("assets/images/hero-abstract-bg.png?v=20260329-safe"),
      linear-gradient(135deg, rgba(63, 58, 61, 0.05), transparent 30%);
    background-size: auto, 1280px auto, auto;
    background-repeat: no-repeat;
    background-position: center center, center center, center center;
    mix-blend-mode: multiply;
  }

  .hero-image-overlay {
    z-index: 3;
  }

  .about-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
  }

  .about-section::before {
    content: "";
    position: absolute;
    top: -72px;
    left: max(-640px, calc(50% - 1328px));
    width: min(48vw, 860px);
    height: min(68vw, 920px);
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.14) 68%, rgba(255, 255, 255, 0.42)),
      url("assets/images/left-wave-premium-tint-flip.jpg?v=20260329-flip");
    background-repeat: no-repeat;
    background-size: auto, 100% auto;
    background-position: left top, right top;
    opacity: 0.82;
    filter: saturate(1.02) contrast(1.08) brightness(0.99);
    mix-blend-mode: normal;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 1) 0, rgba(0, 0, 0, 0.94) 62%, rgba(0, 0, 0, 0.18) 100%);
    pointer-events: none;
    z-index: 0;
  }

  .about-redesign {
    position: relative;
    z-index: 1;
  }
}

/* Custom premium design system unify pass. */
:root {
  --premium-bg:
    radial-gradient(circle at top left, rgba(184, 62, 58, 0.038), transparent 22%),
    linear-gradient(180deg, #fffdfd 0%, #fff9f9 34%, #fffefe 100%);
  --premium-surface:
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(255, 250, 250, 0.96));
  --premium-surface-strong:
    linear-gradient(180deg, rgba(255, 255, 255, 0.998), rgba(255, 245, 246, 0.985));
  --premium-surface-muted:
    linear-gradient(180deg, rgba(252, 247, 247, 0.96), rgba(255, 255, 255, 0.98));
  --premium-border: rgba(223, 205, 208, 0.88);
  --premium-border-strong: rgba(201, 174, 178, 0.92);
  --premium-shadow:
    0 22px 50px rgba(47, 42, 44, 0.08),
    0 2px 8px rgba(47, 42, 44, 0.04);
  --premium-shadow-hover:
    0 30px 70px rgba(47, 42, 44, 0.14),
    0 10px 24px rgba(184, 62, 58, 0.08);
  --premium-shadow-soft: 0 16px 34px rgba(47, 42, 44, 0.06);
  --premium-glow:
    radial-gradient(circle at top right, rgba(184, 62, 58, 0.12), transparent 34%),
    radial-gradient(circle at bottom left, rgba(47, 42, 44, 0.05), transparent 28%);
  --premium-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --premium-radius-lg: 28px;
  --premium-radius-md: 22px;
  --premium-radius-sm: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--premium-bg);
}

.site-header,
.hero-image-wrap,
.trust-card,
.about-story-panel,
.about-story-figure,
.vision-frame,
.vision-card,
.founder-message-card,
.founder-portrait-card,
.certificate-card,
.partner-deck-card,
.product-card,
.projects-division-header,
.projects-division-board,
.projects-focus-card,
.project-service-card,
.projects-client-intro,
.projects-client-group,
.contact-connect-copy,
.contact-connect-board,
.contact-connect-card,
.contact-connect-whatsapp-box,
.client-logo-card,
.footer-pro-top,
.footer-pro-column {
  transition:
    transform 360ms var(--premium-ease),
    box-shadow 360ms var(--premium-ease),
    border-color 300ms var(--premium-ease),
    background-color 300ms var(--premium-ease),
    opacity 300ms var(--premium-ease);
}

.button,
.hero-brochure,
.hero-fab,
.contact-connect-card a,
.footer-pro-social a,
.projects-account-card,
.client-logo-card {
  transition:
    transform 260ms var(--premium-ease),
    box-shadow 260ms var(--premium-ease),
    border-color 260ms var(--premium-ease),
    background-color 260ms var(--premium-ease),
    color 220ms var(--premium-ease);
}

.premium-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 440ms var(--premium-ease) var(--reveal-delay, 0ms),
    transform 440ms var(--premium-ease) var(--reveal-delay, 0ms);
}

.premium-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-tag {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 246, 246, 0.98));
  border: 1px solid rgba(184, 62, 58, 0.14);
  box-shadow:
    0 12px 22px rgba(47, 42, 44, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

@media (min-width: 981px) {
  body {
    background-attachment: fixed;
  }

  .section-space {
    padding-block: clamp(82px, 8.6vw, 122px);
  }

  .site-header {
    backdrop-filter: blur(14px);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 251, 251, 0.93));
    box-shadow:
      0 18px 42px rgba(47, 42, 44, 0.08),
      inset 0 -1px 0 rgba(224, 208, 211, 0.65);
  }

  .header-shell {
    gap: 18px;
  }

  .header-topbar,
  .header-navrow {
    position: relative;
  }

  .header-topbar::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 62, 58, 0.16), transparent);
  }

  .header-meta {
    gap: 14px;
  }

  .meta-card {
    background: var(--premium-surface);
    border: 1px solid rgba(228, 214, 216, 0.86);
    box-shadow: 0 16px 28px rgba(47, 42, 44, 0.05);
  }

  .site-nav a {
    position: relative;
    padding: 8px 0;
  }

  .site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(184, 62, 58, 0), rgba(184, 62, 58, 0.88), rgba(184, 62, 58, 0));
    transform: scaleX(0.32);
    opacity: 0;
    transition:
      transform 220ms var(--premium-ease),
      opacity 220ms var(--premium-ease);
  }

  .site-nav a:hover::after,
  .site-nav a:focus-visible::after {
    transform: scaleX(1);
    opacity: 1;
  }

  .hero-section {
    padding-top: clamp(24px, 2.7vw, 42px);
  }

  .hero-shell {
    position: relative;
  }

  .hero-image-wrap {
    border: 1px solid rgba(230, 214, 217, 0.92);
    border-radius: 34px;
    overflow: hidden;
    box-shadow:
      0 36px 88px rgba(47, 42, 44, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.96);
  }

  .hero-image-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(105deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.2) 28%, rgba(255, 255, 255, 0.04) 54%),
      radial-gradient(circle at 24% 22%, rgba(184, 62, 58, 0.12), transparent 28%);
    pointer-events: none;
  }

  .hero-image {
    transform: scale(1.012);
    transition: transform 900ms var(--premium-ease);
  }

  .hero-image-wrap:hover .hero-image {
    transform: scale(1.028);
  }

  .hero-image-overlay {
    max-width: 760px;
    left: clamp(44px, 4vw, 70px);
    top: clamp(34px, 4vw, 62px);
    padding: 26px 30px 20px;
    border-radius: 28px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 251, 251, 0.7)),
      radial-gradient(circle at top left, rgba(184, 62, 58, 0.08), transparent 44%);
    border: 1px solid rgba(232, 215, 217, 0.88);
    box-shadow:
      0 28px 60px rgba(47, 42, 44, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
  }

  .hero-image-overlay::after {
    content: "";
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 12px;
    height: 1px;
    background: linear-gradient(90deg, rgba(184, 62, 58, 0), rgba(184, 62, 58, 0.32), rgba(184, 62, 58, 0));
  }

  .hero-image-overlay h1 {
    letter-spacing: -0.03em;
    text-shadow: 0 10px 26px rgba(47, 42, 44, 0.08);
  }

  .hero-image-overlay h2 {
    opacity: 0.84;
  }

  .hero-brochure {
    border: 1px solid rgba(184, 62, 58, 0.16);
    box-shadow:
      0 18px 38px rgba(47, 42, 44, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.88);
  }

  .hero-actions-rail {
    gap: 12px;
  }

  .hero-fab {
    box-shadow:
      0 18px 34px rgba(47, 42, 44, 0.12),
      0 8px 22px rgba(184, 62, 58, 0.08);
  }

  .hero-fab:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow:
      0 22px 42px rgba(47, 42, 44, 0.16),
      0 10px 24px rgba(184, 62, 58, 0.12);
  }

  .trust-card {
    background:
      var(--premium-surface-strong),
      var(--premium-glow);
    border: 1px solid var(--premium-border);
    border-radius: 32px;
    box-shadow: var(--premium-shadow);
  }

  .about-story-panel,
  .vision-card,
  .founder-message-card,
  .founder-portrait-card,
  .certificate-card,
  .partner-deck-card,
  .contact-connect-copy,
  .contact-connect-board,
  .contact-connect-card,
  .projects-focus-card,
  .project-service-card,
  .projects-client-intro,
  .projects-client-group,
  .footer-pro-top,
  .footer-pro-column {
    background:
      var(--premium-surface),
      var(--premium-glow);
    border: 1px solid var(--premium-border);
    box-shadow: var(--premium-shadow);
  }

  .about-story-panel:hover,
  .vision-card:hover,
  .founder-message-card:hover,
  .founder-portrait-card:hover,
  .contact-connect-card:hover,
  .projects-focus-card:hover,
  .project-service-card:hover,
  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--premium-shadow-hover);
    border-color: var(--premium-border-strong);
  }

  .vision-frame,
  .about-story-figure,
  .founder-portrait-frame {
    box-shadow:
      0 28px 58px rgba(47, 42, 44, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.96);
  }

  .products-section .section-heading,
  .clients-showcase-copy,
  .partnerships-head {
    max-width: 760px;
  }

  .products-grid {
    gap: 26px;
  }

  .product-card {
    padding: 22px 22px 24px;
    border-radius: 28px;
    background:
      var(--premium-surface-strong),
      radial-gradient(circle at top right, rgba(184, 62, 58, 0.08), transparent 30%);
    border: 1px solid var(--premium-border);
    box-shadow: var(--premium-shadow);
  }

  .product-card::after {
    content: "";
    position: absolute;
    inset: auto 22px 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 62, 58, 0.2), transparent);
  }

  .product-card-media {
    border-radius: 22px;
    background:
      radial-gradient(circle at top left, rgba(184, 62, 58, 0.08), transparent 32%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 247, 0.96));
    border: 1px solid rgba(232, 220, 223, 0.96);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.98),
      0 18px 36px rgba(47, 42, 44, 0.07);
  }

  .product-card-media img {
    transition:
      transform 720ms var(--premium-ease),
      filter 320ms var(--premium-ease);
  }

  .product-card:hover .product-card-media img {
    transform: scale(1.035);
    filter: saturate(1.04) contrast(1.02);
  }

  .product-card h3 {
    letter-spacing: -0.02em;
  }

  .product-card ul {
    gap: 12px;
  }

  .products-section .product-card li {
    padding-left: 18px;
  }

  .projects-division-header {
    gap: 36px;
    padding: 30px 32px;
    border-radius: 32px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 248, 0.95)),
      radial-gradient(circle at top left, rgba(184, 62, 58, 0.1), transparent 30%);
    border: 1px solid var(--premium-border);
    box-shadow: var(--premium-shadow);
  }

  .projects-header-copy h2 {
    letter-spacing: -0.035em;
    text-wrap: balance;
  }

  .projects-header-summary {
    padding: 10px 0 0;
  }

  .projects-header-pills span,
  .projects-media-note-tags span,
  .projects-client-list span {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 247, 247, 0.96));
    border: 1px solid rgba(224, 206, 209, 0.86);
    box-shadow: 0 10px 20px rgba(47, 42, 44, 0.04);
  }

  .projects-division-board {
    padding: 28px;
    border-radius: 34px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(255, 248, 249, 0.97)),
      radial-gradient(circle at top right, rgba(184, 62, 58, 0.08), transparent 28%);
    border: 1px solid rgba(226, 210, 214, 0.92);
    box-shadow:
      0 34px 78px rgba(47, 42, 44, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
  }

  .projects-media-card {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(225, 212, 214, 0.9);
    box-shadow:
      0 22px 52px rgba(47, 42, 44, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.96);
  }

  .projects-media-card img:not(.projects-media-slide) {
    transition: transform 780ms var(--premium-ease);
  }

  .projects-media-card:hover img:not(.projects-media-slide) {
    transform: scale(1.04);
  }

  .projects-media-badge,
  .projects-media-note {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 249, 0.94));
    border: 1px solid rgba(223, 204, 207, 0.86);
    box-shadow: 0 18px 36px rgba(47, 42, 44, 0.09);
    backdrop-filter: blur(12px);
  }

  .projects-focus-card {
    border-radius: 30px;
  }

  .projects-highlight-list li {
    padding: 12px 14px 12px 18px;
    border-radius: 18px;
    background: var(--premium-surface-muted);
    border: 1px solid rgba(232, 218, 220, 0.9);
  }

  .projects-key-stats article {
    background: var(--premium-surface-muted);
    border: 1px solid rgba(229, 214, 217, 0.9);
    box-shadow: 0 16px 30px rgba(47, 42, 44, 0.05);
  }

  .projects-client-band {
    margin-top: 28px;
    align-items: stretch;
  }

  .projects-client-intro {
    border-radius: 32px;
  }

  .projects-account-card {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 246, 247, 0.96));
    border: 1px solid rgba(225, 211, 214, 0.92);
    box-shadow: 0 14px 26px rgba(47, 42, 44, 0.05);
  }

  .projects-account-card:hover {
    transform: translateY(-3px);
    box-shadow:
      0 18px 34px rgba(47, 42, 44, 0.08),
      0 8px 20px rgba(184, 62, 58, 0.06);
  }

  .contact-connect-shell {
    gap: 28px;
    align-items: stretch;
  }

  .contact-connect-copy,
  .contact-connect-board {
    border-radius: 34px;
  }

  .contact-connect-visual {
    border-radius: 28px;
    overflow: hidden;
    box-shadow:
      0 24px 56px rgba(47, 42, 44, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  .contact-connect-visual img {
    transition:
      transform 880ms var(--premium-ease),
      filter 320ms var(--premium-ease);
  }

  .contact-connect-copy:hover .contact-connect-visual img {
    transform: scale(1.035);
    filter: saturate(1.03);
  }

  .contact-connect-visual-panel {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 248, 0.86));
    border: 1px solid rgba(232, 214, 217, 0.84);
    box-shadow: 0 18px 38px rgba(47, 42, 44, 0.12);
    backdrop-filter: blur(14px);
  }

  .contact-connect-whatsapp-box {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 255, 250, 0.95)),
      radial-gradient(circle at top right, rgba(37, 211, 102, 0.08), transparent 34%);
    border: 1px solid rgba(187, 227, 198, 0.92);
    box-shadow: 0 20px 38px rgba(47, 42, 44, 0.07);
  }

  .contact-connect-field input,
  .contact-connect-field textarea {
    border: 1px solid rgba(217, 199, 202, 0.86);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 248, 248, 0.96));
    box-shadow:
      inset 0 1px 1px rgba(255, 255, 255, 0.92),
      0 8px 18px rgba(47, 42, 44, 0.03);
    transition:
      border-color 220ms var(--premium-ease),
      box-shadow 220ms var(--premium-ease),
      transform 220ms var(--premium-ease);
  }

  .contact-connect-field input:focus,
  .contact-connect-field textarea:focus {
    border-color: rgba(184, 62, 58, 0.44);
    box-shadow:
      0 0 0 5px rgba(184, 62, 58, 0.08),
      0 14px 26px rgba(47, 42, 44, 0.08);
    transform: translateY(-1px);
  }

  .clients-showcase-shell {
    gap: 26px;
  }

  .clients-marquee {
    border-radius: 32px;
    border: 1px solid rgba(227, 211, 214, 0.94);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.988), rgba(255, 247, 248, 0.97)),
      radial-gradient(circle at center, rgba(184, 62, 58, 0.05), transparent 40%);
    box-shadow:
      0 30px 70px rgba(47, 42, 44, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
  }

  .clients-marquee-row {
    animation-duration: 156s;
  }

  .client-logo-card {
    min-width: 172px;
    min-height: 108px;
    padding: 14px 12px;
    border: 1px solid rgba(225, 210, 213, 0.94);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(252, 247, 248, 0.97));
    box-shadow:
      0 18px 32px rgba(47, 42, 44, 0.07),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
  }

  .client-logo-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow:
      0 24px 44px rgba(47, 42, 44, 0.12),
      0 12px 26px rgba(184, 62, 58, 0.07);
    border-color: rgba(194, 170, 174, 0.96);
  }

  .client-logo-mark {
    min-height: 42px;
  }

  .client-logo-mark img {
    max-width: 100%;
    max-height: 32px;
  }

  .footer-pro {
    gap: 24px;
    padding-top: 34px;
    padding-bottom: 24px;
  }

  .footer-pro-top,
  .footer-pro-grid,
  .footer-pro-bottom {
    border-radius: 30px;
  }

  .footer-pro-top {
    padding: 26px 28px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.985), rgba(255, 246, 247, 0.965)),
      radial-gradient(circle at top right, rgba(184, 62, 58, 0.08), transparent 32%);
  }

  .footer-pro-column {
    padding: 22px 22px 20px;
  }

  .footer-pro-column:hover {
    transform: translateY(-4px);
    box-shadow:
      0 20px 42px rgba(47, 42, 44, 0.09),
      0 10px 22px rgba(184, 62, 58, 0.06);
  }

  .footer-pro-social a:hover {
    transform: translateY(-3px) scale(1.03);
  }
}

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

  .premium-reveal,
  .premium-reveal.is-visible,
  .site-header,
  .hero-image-wrap,
  .trust-card,
  .about-story-panel,
  .vision-card,
  .founder-message-card,
  .founder-portrait-card,
  .certificate-card,
  .partner-deck-card,
  .product-card,
  .projects-division-header,
  .projects-division-board,
  .projects-focus-card,
  .project-service-card,
  .projects-client-intro,
  .projects-client-group,
  .contact-connect-copy,
  .contact-connect-board,
  .contact-connect-card,
  .contact-connect-whatsapp-box,
  .client-logo-card,
  .footer-pro-top,
  .footer-pro-column,
  .button,
  .hero-brochure,
  .hero-fab,
  .contact-connect-card a,
  .footer-pro-social a,
  .projects-account-card {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

@media (min-width: 981px) {
  .hero-section {
    padding-top: 0 !important;
  }

  .hero-shell {
    gap: 0 !important;
  }

  .hero-image-wrap {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
    border-radius: 34px !important;
    overflow: hidden !important;
    background: #ffffff !important;
  }

  .hero-image {
    display: block !important;
    width: min(100%, 1180px) !important;
    height: auto !important;
    max-width: 1180px !important;
    object-fit: contain !important;
    object-position: center bottom !important;
    transform: none !important;
    margin: 0 auto !important;
    padding: 72px 0 0 !important;
  }

  .hero-image-wrap:hover .hero-image {
    transform: none !important;
  }

  .hero-image-overlay {
    top: 34px !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    width: min(1460px, calc(100% - 80px)) !important;
    max-width: 1460px !important;
    padding: 0 !important;
    text-align: center !important;
    align-items: center !important;
    justify-items: center !important;
    gap: 8px !important;
    transform: translateX(-50%) !important;
    background: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }

  .hero-image-overlay::after {
    content: none !important;
    display: none !important;
  }

  .hero-brandline {
    gap: 14px !important;
    margin-bottom: 4px !important;
    color: #c52f33 !important;
    font-family: "Barlow", sans-serif !important;
    font-size: clamp(0.94rem, 0.9vw, 1.04rem) !important;
    font-weight: 600 !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
  }

  .hero-brandline-accent {
    color: inherit !important;
  }

  .hero-brandline::before,
  .hero-brandline::after {
    width: 48px !important;
    background: rgba(184, 63, 59, 0.78) !important;
  }

  .hero-image-overlay h1 {
    display: inline-block !important;
    width: max-content !important;
    max-width: 100% !important;
    white-space: nowrap !important;
    text-wrap: balance !important;
    font-family: "SF Pro Display Medium", "Barlow", sans-serif !important;
    font-size: 34pt !important;
    line-height: 0.95 !important;
    letter-spacing: 0.2em !important;
    font-weight: 500 !important;
    color: #1f1b1d !important;
    text-transform: none !important;
    text-shadow: none !important;
    transform: none !important;
    transform-origin: center center !important;
  }

  .hero-image-overlay h2 {
    margin-top: 0 !important;
    display: inline-block !important;
    width: max-content !important;
    white-space: nowrap !important;
    max-width: 100% !important;
    text-wrap: auto !important;
    font-family: "Barlow", sans-serif !important;
    font-size: clamp(1.02rem, 1.06vw, 1.14rem) !important;
    line-height: 1.3 !important;
    letter-spacing: 0.14em !important;
    font-weight: 500 !important;
    color: #5b5558 !important;
    text-shadow: none !important;
    opacity: 1 !important;
  }
}

@media (min-width: 981px) {
  .products-section .section-heading {
    display: grid;
    gap: 10px;
    position: relative;
    padding-left: 24px;
  }

  .products-section .section-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: auto;
    margin: 0;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
    color: #b83e3a;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.24em;
  }

  .products-section .section-heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 3px;
    height: calc(100% - 16px);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(184, 62, 58, 0.92), rgba(184, 62, 58, 0.08));
  }

  .products-section .section-heading h2 {
    max-width: 13.5ch;
    text-wrap: pretty;
  }

  .products-section-intro {
    max-width: 64ch;
  }

  .products-panel-types {
    gap: 12px;
  }

  .products-panel-types span {
    min-height: 42px;
    padding: 10px 15px;
    font-size: 0.85rem;
  }

  .products-grid {
    gap: 28px;
  }

  .product-card {
    padding: 24px 24px 22px;
    border-radius: 30px;
    box-shadow:
      0 26px 56px rgba(47, 42, 44, 0.09),
      0 8px 20px rgba(184, 62, 58, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.96);
  }

  .product-card::before {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    top: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(184, 62, 58, 0.7), rgba(184, 62, 58, 0.1));
  }

  .product-card h3 {
    margin-bottom: 14px;
    letter-spacing: -0.03em;
  }

  .product-card ul {
    display: grid;
    gap: 8px;
  }

  .products-section .product-card li {
    color: #4f4649;
  }

  .product-card:hover {
    transform: translateY(-8px);
    box-shadow:
      0 34px 74px rgba(47, 42, 44, 0.12),
      0 12px 28px rgba(184, 62, 58, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
  }

  .product-card:hover .product-card-media {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.98),
      0 22px 44px rgba(47, 42, 44, 0.09);
  }

  .contact-connect-visual::before {
    background:
      linear-gradient(180deg, rgba(15, 20, 31, 0.02) 0%, rgba(15, 20, 31, 0.08) 72%, rgba(15, 20, 31, 0.18) 100%),
      radial-gradient(circle at top right, rgba(184, 62, 58, 0.14), transparent 26%);
  }

  .contact-connect-copy {
    padding: 22px;
  }

  .contact-connect-visual {
    border: 1px solid rgba(231, 214, 217, 0.94);
    box-shadow:
      0 28px 62px rgba(47, 42, 44, 0.12),
      0 10px 24px rgba(184, 62, 58, 0.05),
      inset 0 1px 0 rgba(255, 255, 255, 0.94);
  }

  .contact-connect-visual-panel {
    left: 20px;
    right: auto;
    bottom: 20px;
    max-width: 360px;
    gap: 6px;
    padding: 14px 16px;
    border: 1px solid rgba(232, 214, 217, 0.9);
    border-radius: 20px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 248, 0.88));
    box-shadow:
      0 18px 34px rgba(47, 42, 44, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
  }

  .contact-connect-visual-panel::before {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    top: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(184, 62, 58, 0.75), rgba(184, 62, 58, 0.08));
  }

  .contact-connect-visual-panel .mini-label {
    color: #b83e3a;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.18em;
  }

  .contact-connect-visual-panel strong {
    max-width: 28ch;
    color: #2f2a2c;
    font-size: 0.96rem;
    line-height: 1.4;
    font-weight: 700;
  }

  .contact-connect-content-stack {
    padding: 4px 2px 6px;
    gap: 18px;
  }

  .contact-connect-content-stack > .section-tag {
    display: inline-flex;
    width: fit-content;
    min-height: auto;
    margin: 0;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
    color: #b83e3a;
    letter-spacing: 0.22em;
    font-size: 0.79rem;
  }
}

.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 260 !important;
}

@media (min-width: 981px) {
  body {
    padding-top: var(--desktop-header-offset, 0px);
  }

  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
  }

  .site-header,
  .header-shell,
  .header-topbar,
  .header-navrow,
  .site-nav {
    transition:
      background-color 260ms var(--premium-ease, ease),
      box-shadow 260ms var(--premium-ease, ease),
      border-color 260ms var(--premium-ease, ease),
      padding 260ms var(--premium-ease, ease),
      gap 260ms var(--premium-ease, ease),
      transform 320ms var(--premium-ease, ease),
      opacity 220ms var(--premium-ease, ease),
      max-height 320ms var(--premium-ease, ease),
      margin 260ms var(--premium-ease, ease);
  }

  .header-topbar {
    max-height: 120px;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
  }

  .header-navrow {
    margin-top: 0;
  }

  .site-header.is-condensed {
    background: rgba(255, 255, 255, 0.94) !important;
    backdrop-filter: blur(18px);
    box-shadow:
      0 18px 38px rgba(47, 42, 44, 0.09),
      inset 0 -1px 0 rgba(228, 214, 217, 0.78);
  }

  .site-header.is-condensed .header-shell {
    gap: 0;
    padding-block: 10px;
  }

  .site-header.is-condensed .header-topbar {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    pointer-events: none;
    transform: translateY(-18px);
  }

  .site-header.is-condensed .header-topbar::after {
    opacity: 0;
  }

  .site-header.is-condensed .header-navrow {
    justify-content: center;
    padding-top: 0;
    margin-top: 0;
    border-top-color: transparent;
  }

  .site-header.is-condensed .site-nav {
    width: 100%;
    justify-content: center;
    gap: 26px;
  }

  .site-header.is-condensed .site-nav a {
    padding: 6px 0;
    font-size: 0.94rem;
  }

  .products-section .section-heading {
    gap: 14px;
    padding-left: 20px;
  }

  .products-section .section-heading::before {
    top: 6px;
    height: calc(100% - 12px);
  }

  .products-section .section-heading h2 {
    max-width: 16.5ch;
    font-size: clamp(2.65rem, 3.15vw, 3.55rem);
    line-height: 0.99;
    letter-spacing: -0.045em;
    text-wrap: balance;
  }

  .products-section-intro {
    font-size: 1.02rem;
  }
}

/* Custom Projects Division desktop clip fix. */
@media (min-width: 981px) {
  .projects-division-header {
    align-items: start;
    gap: 22px;
  }

  .projects-header-copy,
  .projects-header-summary {
    height: auto;
    min-height: 0;
    align-self: start;
  }

  .projects-header-summary {
    padding: 28px 30px 28px;
    border-radius: 30px;
  }

  .projects-header-summary p {
    max-width: 60ch;
    font-size: 0.97rem;
    line-height: 1.7;
  }

  .projects-header-summary p + p {
    margin-top: 14px;
  }

  .projects-header-pills {
    margin-top: 18px;
    gap: 10px;
  }

  .projects-header-pills span {
    min-height: 40px;
    padding-inline: 15px;
    font-size: 0.8rem;
  }
}

/* Custom About and Vision desktop transition bridge. */
@media (min-width: 1180px) {
  .about-section::before {
    top: -72px;
    width: min(48vw, 860px);
    height: min(68vw, 920px);
    background-position: left top, right top;
    opacity: 0.84;
    filter: saturate(1.03) contrast(1.07) brightness(1);
  }

  .vision-section {
    position: relative;
    margin-top: -120px;
    z-index: 2;
  }

  .vision-shell {
    position: relative;
    align-items: start;
  }

  .vision-visual {
    position: relative;
    z-index: 2;
    transform: none;
  }

  .vision-copy {
    margin-top: 0;
  }
}

.capability-timeline-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(252, 247, 247, 0.9) 46%, rgba(255, 255, 255, 0.84)),
    url("assets/images/capability-timeline-gradient.svg"),
    linear-gradient(180deg, #ffffff, #fcf7f7 46%, #ffffff);
  background-position: center center, center center, center center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: cover, cover, cover;
}

.capability-timeline-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 24%, rgba(255, 255, 255, 0.58), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  pointer-events: none;
}

.capability-timeline-section .container {
  position: relative;
  z-index: 1;
}

.capability-summary-card {
  max-width: 960px;
  margin: 0 auto;
  padding: 38px 42px;
  border-radius: 30px;
  border: 1px solid #eadcdf;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(255, 248, 248, 0.985)),
    radial-gradient(circle at top right, rgba(207, 49, 52, 0.06), transparent 34%);
  box-shadow:
    0 24px 54px rgba(47, 42, 44, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  text-align: center;
}

.capability-summary-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.9rem, 3.15vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.capability-timeline-head,
.projects-case-studies-head {
  max-width: 840px;
  margin: 0 auto 30px;
  text-align: center;
}

.capability-timeline-head h2,
.projects-case-studies-head h2,
.why-gemtech-copy h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.capability-timeline-head p,
.projects-case-studies-head p,
.why-gemtech-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.capability-timeline-head .section-tag,
.about-story-panel .section-tag,
.vision-copy .section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  background: #b83f3b;
  border: 1px solid #b83f3b;
  color: #ffffff;
  box-shadow:
    0 14px 28px rgba(184, 63, 59, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.capability-timeline-marquee {
  position: relative;
  overflow: hidden;
  padding: 10px 10px 22px 2px;
  mask-image: linear-gradient(90deg, transparent 0, #000 2%, #000 98%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 2%, #000 98%, transparent 100%);
}

.capability-timeline-track {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  will-change: transform;
}

.capability-timeline-track.is-marquee {
  animation: capability-timeline-marquee-scroll 28s linear infinite;
}

.capability-timeline-marquee:hover .capability-timeline-track.is-marquee,
.capability-timeline-marquee:focus-within .capability-timeline-track.is-marquee {
  animation-play-state: paused;
}

.capability-timeline-marquee.is-marquee {
  overflow: hidden;
}

.capability-timeline-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 62, 58, 0.14), rgba(235, 191, 122, 0.18), rgba(184, 62, 58, 0.14));
  transform: translateY(-50%);
}

.capability-timeline-card {
  position: relative;
  display: grid;
  gap: 12px;
  min-width: 0;
  flex: 0 0 252px;
  width: 252px;
  padding: 22px 20px 20px;
  border-radius: 24px;
  border: 1px solid #eadcdf;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 248, 248, 0.99)),
    radial-gradient(circle at top right, rgba(207, 49, 52, 0.05), transparent 34%);
  box-shadow:
    0 18px 42px rgba(47, 42, 44, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  scroll-snap-align: start;
  transition:
    transform 320ms var(--premium-ease),
    box-shadow 320ms var(--premium-ease),
    border-color 320ms var(--premium-ease);
  z-index: 1;
}

.capability-timeline-track.is-marquee .capability-timeline-card {
  scroll-snap-align: none;
}

.capability-timeline-card.timeline-clone {
  display: grid;
}

.capability-timeline-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 62, 58, 0.2);
  box-shadow:
    0 26px 50px rgba(47, 42, 44, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.capability-timeline-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 24px 0 0 24px;
  background: linear-gradient(180deg, rgba(184, 62, 58, 0.92), rgba(235, 191, 122, 0.28));
}

.capability-timeline-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(184, 62, 58, 0.08);
  color: #b83e3a;
  font-family: "Barlow", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.capability-timeline-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 1.08rem;
  line-height: 1.28;
}

.capability-timeline-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.capability-timeline-card.premium-reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
}

.capability-timeline-card.premium-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes capability-timeline-marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-1 * var(--timeline-marquee-distance, 50%)), 0, 0);
  }
}

.why-gemtech-section {
  background:
    linear-gradient(180deg, #fffdfd, #f9f3f4 42%, #ffffff);
}

.why-gemtech-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: start;
}

.why-gemtech-copy {
  display: grid;
  gap: 18px;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid #eadcdf;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 248, 248, 0.99)),
    radial-gradient(circle at top right, rgba(207, 49, 52, 0.06), transparent 30%);
  box-shadow:
    0 22px 52px rgba(47, 42, 44, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.why-gemtech-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.why-gemtech-proof article,
.why-gemtech-card,
.case-study-card {
  border: 1px solid #eddfe1;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 249, 249, 0.99));
  box-shadow:
    0 16px 36px rgba(47, 42, 44, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.why-gemtech-proof article {
  display: grid;
  gap: 6px;
  padding: 16px 14px;
}

.why-gemtech-proof strong {
  color: #b83e3a;
  font-family: "Barlow", sans-serif;
  font-size: 1.08rem;
  line-height: 1.1;
}

.why-gemtech-proof span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.52;
}

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

.why-gemtech-card,
.case-study-card {
  display: grid;
  gap: 12px;
  padding: 24px 22px;
}

.why-gemtech-card h3,
.case-study-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 1.18rem;
  line-height: 1.3;
}

.why-gemtech-card p,
.case-study-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.projects-case-studies-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(184, 62, 58, 0.08), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(233, 196, 106, 0.12), transparent 22%),
    linear-gradient(180deg, #ffffff, #f9f4f5 46%, #ffffff);
}

.projects-case-studies-section::before,
.projects-case-studies-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.projects-case-studies-section::before {
  inset: 0 auto auto 0;
  width: min(34vw, 460px);
  height: min(34vw, 420px);
  background:
    radial-gradient(circle at center, rgba(184, 62, 58, 0.07), rgba(184, 62, 58, 0) 68%);
  filter: blur(10px);
}

.projects-case-studies-section::after {
  right: -8%;
  bottom: -18%;
  width: min(34vw, 500px);
  height: min(34vw, 500px);
  background:
    radial-gradient(circle at center, rgba(29, 48, 74, 0.08), rgba(29, 48, 74, 0) 72%);
  filter: blur(16px);
}

.projects-case-studies-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.96fr 0.96fr;
  gap: 20px;
  counter-reset: caseStudy;
}

.case-study-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-study-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(184, 62, 58, 0.08);
  border: 1px solid rgba(184, 62, 58, 0.12);
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
}

.case-study-footer {
  display: grid;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid #efe1e3;
}

.case-study-footer strong {
  color: #b83e3a;
  font-family: "Barlow", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-study-footer span {
  color: var(--navy);
  font-size: 0.92rem;
  line-height: 1.55;
}

.projects-case-studies-head {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-bottom: 34px;
}

.projects-case-studies-head .section-tag {
  margin-bottom: 12px;
}

.projects-case-studies-head h2 {
  max-width: 18ch;
  text-wrap: balance;
}

.projects-case-studies-head p {
  max-width: 70ch;
}

.case-study-card {
  position: relative;
  overflow: hidden;
  counter-increment: caseStudy;
  gap: 14px;
  padding: 28px 24px 24px;
  border-radius: 28px;
  border: 1px solid rgba(231, 217, 220, 0.95);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(255, 248, 249, 0.995)),
    radial-gradient(circle at top right, rgba(184, 62, 58, 0.07), transparent 34%);
  box-shadow:
    0 26px 56px rgba(47, 42, 44, 0.08),
    0 10px 22px rgba(47, 42, 44, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.case-study-card::before {
  content: "0" counter(caseStudy);
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(29, 48, 74, 0.08);
  font-family: "Barlow", sans-serif;
  font-size: clamp(2.6rem, 3vw, 3.35rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
}

.case-study-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(184, 62, 58, 0.95), rgba(235, 191, 122, 0.22));
}

.case-study-card:nth-child(1) {
  transform: translateY(-8px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 246, 247, 0.995)),
    radial-gradient(circle at top right, rgba(184, 62, 58, 0.1), transparent 36%);
  box-shadow:
    0 30px 64px rgba(47, 42, 44, 0.1),
    0 12px 24px rgba(47, 42, 44, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.case-study-card .mini-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(184, 62, 58, 0.08);
  color: #b83e3a;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-study-card h3 {
  max-width: 17ch;
  padding-right: 52px;
  font-size: 1.22rem;
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.case-study-card p {
  max-width: 38ch;
  color: #5c575b;
}

.case-study-tags span {
  min-height: 36px;
  padding: 7px 13px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(253, 243, 244, 0.98));
  border: 1px solid rgba(184, 62, 58, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
  color: var(--navy);
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}

.case-study-footer {
  margin-top: auto;
  padding-top: 14px;
}

.case-study-footer strong {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}

.case-study-footer span {
  color: #343b4a;
}

@media (max-width: 980px) {
  .capability-timeline-head,
  .projects-case-studies-head {
    margin-bottom: 24px;
    text-align: left;
  }

  .why-gemtech-shell,
  .projects-case-studies-grid {
    grid-template-columns: 1fr;
  }

  .why-gemtech-proof,
  .why-gemtech-grid {
    grid-template-columns: 1fr 1fr;
  }

  .capability-timeline-track {
    gap: 16px;
    width: max-content;
  }

  .capability-timeline-marquee {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 20px;
    mask-image: none;
    -webkit-mask-image: none;
    scrollbar-width: thin;
    scrollbar-color: rgba(184, 62, 58, 0.38) rgba(242, 234, 235, 0.9);
  }

  .capability-timeline-marquee::-webkit-scrollbar {
    height: 9px;
  }

  .capability-timeline-marquee::-webkit-scrollbar-track {
    background: rgba(242, 234, 235, 0.84);
    border-radius: 999px;
  }

  .capability-timeline-marquee::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, rgba(184, 62, 58, 0.74), rgba(235, 191, 122, 0.62));
    border-radius: 999px;
  }

  .capability-timeline-track.is-marquee {
    animation: none;
    transform: none;
  }

  .capability-timeline-card {
    flex-basis: min(250px, 76vw);
    width: min(250px, 76vw);
  }

  .about-capability-card .capability-timeline-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-timeline-card.timeline-clone {
    display: none;
  }

  .projects-case-studies-head h2,
  .projects-case-studies-head p {
    max-width: none;
  }

  .case-study-card:nth-child(1) {
    transform: none;
  }
}

@media (max-width: 720px) {
  .why-gemtech-copy {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .why-gemtech-proof,
  .why-gemtech-grid,
  .projects-case-studies-grid {
    grid-template-columns: 1fr;
  }

  .capability-timeline-track {
    gap: 14px;
  }

  .capability-timeline-marquee {
    padding-right: 4px;
  }

  .capability-timeline-card {
    flex-basis: min(228px, 84vw);
    width: min(228px, 84vw);
  }

  .about-capability-card .capability-timeline-track {
    grid-template-columns: 1fr;
  }

  .capability-timeline-card,
  .why-gemtech-card,
  .case-study-card {
    padding: 20px 18px;
    border-radius: 20px;
  }

  .capability-timeline-head h2,
  .projects-case-studies-head h2,
  .why-gemtech-copy h2 {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
  }

  .case-study-card h3 {
    padding-right: 34px;
    max-width: none;
    font-size: 1.1rem;
  }
}

.projects-case-studies-section {
  background:
    radial-gradient(circle at 9% 12%, rgba(184, 62, 58, 0.08), transparent 22%),
    radial-gradient(circle at 92% 84%, rgba(29, 48, 74, 0.07), transparent 24%),
    linear-gradient(180deg, #fffefe 0%, #f7f1f2 48%, #ffffff 100%);
}

.projects-case-studies-section .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  gap: 30px;
  align-items: start;
}

.projects-case-studies-head {
  position: relative;
  display: grid;
  gap: 16px;
  margin: 0;
  max-width: none;
  padding: 30px 30px 32px;
  border: 1px solid rgba(228, 214, 217, 0.92);
  border-radius: 32px;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 249, 0.99)),
    radial-gradient(circle at top right, rgba(184, 62, 58, 0.08), transparent 34%);
  box-shadow:
    0 26px 58px rgba(42, 36, 39, 0.08),
    0 12px 26px rgba(42, 36, 39, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.projects-case-studies-head::before {
  content: "";
  position: absolute;
  inset: 24px auto 24px 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #b83e3a 0%, rgba(234, 191, 121, 0.28) 100%);
}

.projects-case-studies-head .section-tag {
  margin: 0;
}

.projects-case-studies-head h2 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(2.2rem, 2.8vw, 3.15rem);
  line-height: 1;
  text-wrap: balance;
}

.projects-case-studies-head p {
  max-width: none;
  margin: 0;
  color: #5b5559;
  font-size: 0.97rem;
  line-height: 1.78;
}

.projects-case-studies-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  grid-template-areas:
    "feature side-top"
    "feature side-bottom";
  gap: 18px;
  align-items: stretch;
}

.case-study-card {
  gap: 15px;
  min-height: 100%;
  padding: 26px 24px 24px;
  border-radius: 30px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.case-study-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 62, 58, 0.2);
  box-shadow:
    0 32px 68px rgba(42, 36, 39, 0.1),
    0 12px 26px rgba(42, 36, 39, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.case-study-card:nth-child(1) {
  grid-area: feature;
  padding: 32px 28px 28px;
  transform: none;
  align-content: start;
  background:
    linear-gradient(155deg, #18243a 0%, #21314b 56%, #304664 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    0 34px 80px rgba(17, 24, 39, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.case-study-card:nth-child(2) {
  grid-area: side-top;
}

.case-study-card:nth-child(3) {
  grid-area: side-bottom;
}

.case-study-card:nth-child(1)::before {
  color: rgba(255, 255, 255, 0.09);
}

.case-study-card:nth-child(1)::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(235, 191, 122, 0.64));
}

.case-study-card:nth-child(1) .mini-label {
  background: rgba(255, 255, 255, 0.1);
  color: #f8d8c8;
}

.case-study-card:nth-child(1) h3 {
  color: #ffffff;
}

.case-study-card:nth-child(1) p {
  color: rgba(238, 243, 248, 0.84);
}

.case-study-card:nth-child(1) .case-study-tags span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: #f2f6fb;
  box-shadow: none;
}

.case-study-card:nth-child(1) .case-study-footer {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.case-study-card:nth-child(1) .case-study-footer strong {
  color: #f6d7ca;
}

.case-study-card:nth-child(1) .case-study-footer span {
  color: rgba(245, 248, 252, 0.9);
}

.case-study-card h3 {
  max-width: 18ch;
  padding-right: 56px;
  font-size: 1.28rem;
  line-height: 1.24;
}

.case-study-card p {
  max-width: none;
}

.case-study-tags {
  margin-top: 2px;
}

.case-study-footer {
  margin-top: auto;
  gap: 6px;
}

@media (max-width: 1100px) {
  .projects-case-studies-section .container {
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: 24px;
  }

  .projects-case-studies-head {
    padding: 26px 24px 28px;
  }

  .projects-case-studies-head h2 {
    max-width: 12ch;
    font-size: clamp(2rem, 3vw, 2.7rem);
  }
}

@media (max-width: 980px) {
  .projects-case-studies-section .container {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .projects-case-studies-head {
    padding: 24px 22px 24px 24px;
  }

  .projects-case-studies-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "feature"
      "side-top"
      "side-bottom";
  }

  .case-study-card:nth-child(1),
  .case-study-card:nth-child(2),
  .case-study-card:nth-child(3) {
    grid-area: auto;
  }
}

@media (max-width: 720px) {
  .projects-case-studies-head {
    padding: 22px 20px 22px 22px;
    border-radius: 24px;
  }

  .projects-case-studies-head::before {
    inset: 18px auto 18px 0;
  }

  .case-study-card,
  .case-study-card:nth-child(1) {
    padding: 22px 18px 20px;
    border-radius: 22px;
  }

  .case-study-card h3 {
    padding-right: 42px;
    font-size: 1.1rem;
  }
}

.projects-case-studies-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "feature feature"
    "side-top side-bottom";
  gap: 18px;
}

.case-study-card {
  min-height: 0;
}

.case-study-card:nth-child(1) {
  grid-column: 1 / -1;
  padding: 28px 28px 26px;
}

.case-study-card:nth-child(1) h3 {
  max-width: 21ch;
}

.case-study-card:nth-child(1) p {
  max-width: 62ch;
}

.case-study-card:nth-child(2),
.case-study-card:nth-child(3) {
  align-content: start;
}

@media (max-width: 980px) {
  .projects-case-studies-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "feature"
      "side-top"
      "side-bottom";
  }

  .case-study-card:nth-child(1) {
    grid-column: auto;
  }
}

.clients-showcase-section .clients-showcase-copy {
  width: 100% !important;
  max-width: none !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  padding-inline: 0 !important;
}

.clients-showcase-section .clients-showcase-copy .section-tag {
  display: flex !important;
  width: min(1200px, calc(100% - 56px)) !important;
  max-width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  box-sizing: border-box !important;
  margin: 0 auto !important;
  padding: 8px 28px !important;
  border-radius: 999px !important;
  border: 1px solid #b83f3b !important;
  background: #b83f3b !important;
  box-shadow: 0 8px 18px rgba(184, 63, 59, 0.12) !important;
  color: #ffffff !important;
}

.site-nav a.is-current {
  color: #b83f3b;
}

.site-nav a.is-current::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Custom legacy career page support styles kept for existing blocks and fallback layouts. */
.career-page {
  background:
    radial-gradient(circle at top center, rgba(184, 63, 59, 0.08), transparent 28%),
    linear-gradient(180deg, #fffefe, #fff8f8 42%, #fffdfd 100%);
}

.career-main {
  padding-top: 10px;
}

.career-hero-shell,
.career-apply-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 28px;
  align-items: stretch;
}

.career-hero-copy,
.career-form-card,
.career-apply-copy,
.career-value-card,
.career-role-card,
.career-process-card {
  border-radius: 32px;
  border: 1px solid rgba(235, 222, 224, 0.96);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 248, 0.98)),
    radial-gradient(circle at top left, rgba(184, 63, 59, 0.08), transparent 36%);
  box-shadow:
    0 24px 54px rgba(47, 42, 44, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.career-hero-copy {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: clamp(28px, 4vw, 42px);
}

.career-hero-copy .section-tag,
.career-section-head .section-tag,
.career-apply-copy .section-tag {
  width: fit-content;
  margin: 0;
  justify-content: center;
  background: #b83f3b;
  border-color: #b83f3b;
  color: #ffffff;
}

.career-hero-copy h1,
.career-section-head h2,
.career-apply-copy h2 {
  margin: 0;
}

.career-hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(2.3rem, 4.4vw, 4rem);
  line-height: 0.96;
}

.career-hero-lead,
.career-section-head p,
.career-apply-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.career-hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.career-hero-highlights span,
.career-role-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fffefe, #fff4f5);
  border: 1px solid rgba(232, 214, 216, 0.96);
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.career-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.career-hero-note {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(231, 218, 220, 0.96);
  background: rgba(255, 255, 255, 0.82);
}

.career-hero-note strong {
  color: var(--navy);
  font-size: 1rem;
}

.career-hero-note span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.career-hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 36px;
  border: 1px solid rgba(235, 222, 224, 0.96);
  box-shadow:
    0 28px 58px rgba(47, 42, 44, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.career-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.career-hero-visual-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(47, 42, 44, 0.76);
  color: #ffffff;
  backdrop-filter: blur(14px);
}

.career-hero-visual-badge span {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.career-hero-visual-badge strong {
  font-size: 1rem;
  line-height: 1.5;
}

.career-section-head {
  display: grid;
  gap: 14px;
  justify-items: start;
  margin-bottom: 28px;
}

.career-section-head h2 {
  max-width: 16ch;
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 1.02;
}

.career-section-head p {
  max-width: 70ch;
}

.career-values-grid,
.career-openings-grid,
.career-process-grid {
  display: grid;
  gap: 20px;
}

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

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

.career-value-card,
.career-role-card,
.career-process-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 26px 24px;
}

.career-value-card strong,
.career-role-card h3,
.career-process-card strong {
  margin: 0;
  color: var(--navy);
  font-size: 1.28rem;
  line-height: 1.18;
}

.career-value-card p,
.career-role-card p,
.career-process-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.career-role-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.career-role-button {
  width: fit-content;
  margin-top: 4px;
}

.career-process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: #b83f3b;
  color: #ffffff;
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.career-apply-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(26px, 4vw, 40px);
}

.career-apply-points {
  display: grid;
  gap: 14px;
}

.career-apply-points article {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(232, 216, 218, 0.96);
  background: rgba(255, 255, 255, 0.84);
}

.career-apply-points strong {
  color: var(--navy);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.career-apply-points a,
.career-apply-points span {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  text-decoration: none;
}

.career-apply-points a:hover,
.career-apply-points a:focus-visible {
  color: #b83f3b;
}

.career-form-card {
  padding: clamp(24px, 3.6vw, 36px);
}

.career-form-card h3 {
  margin: 0 0 20px;
  color: var(--navy);
  font-size: 1.5rem;
}

.career-page .contact-connect-form {
  display: grid;
  gap: 18px;
}

.career-page .contact-connect-field select {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(227, 212, 215, 0.98);
  background: #ffffff;
  color: var(--text);
  font: inherit;
  outline: none;
}

.career-page .contact-connect-field select:focus,
.career-page .contact-connect-field input:focus,
.career-page .contact-connect-field textarea:focus {
  border-color: rgba(184, 63, 59, 0.42);
  box-shadow: 0 0 0 4px rgba(184, 63, 59, 0.08);
}

@media (max-width: 1100px) {
  .career-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .career-openings-grid,
  .career-process-grid,
  .career-hero-shell,
  .career-apply-shell {
    grid-template-columns: 1fr;
  }

  .career-hero-visual {
    min-height: 460px;
  }
}

@media (max-width: 760px) {
  .career-main {
    padding-top: 12px;
  }

  .career-hero-copy,
  .career-value-card,
  .career-role-card,
  .career-process-card,
  .career-apply-copy,
  .career-form-card {
    border-radius: 24px;
    padding: 22px 20px;
  }

  .career-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .career-section-head h2,
  .career-apply-copy h2 {
    max-width: 100%;
    font-size: clamp(1.8rem, 7.4vw, 2.3rem);
  }

  .career-values-grid,
  .career-openings-grid,
  .career-process-grid {
    grid-template-columns: 1fr;
  }

  .career-hero-visual {
    min-height: 360px;
    border-radius: 28px;
  }

  .career-hero-visual-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 16px;
    border-radius: 20px;
  }
}

/* START: Custom premium career page redesign system by Aditya Raj. */
.career-premium-main {
  position: relative;
  display: grid;
  gap: clamp(14px, 2.2vw, 26px);
  padding-bottom: 36px;
  background:
    radial-gradient(circle at top left, rgba(184, 63, 59, 0.08), transparent 24%),
    radial-gradient(circle at 85% 8%, rgba(27, 41, 58, 0.05), transparent 24%);
}

.career-premium-main::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 520px;
  background:
    linear-gradient(180deg, rgba(255, 250, 250, 0.96), rgba(255, 252, 252, 0)),
    repeating-linear-gradient(
      120deg,
      rgba(184, 63, 59, 0.025),
      rgba(184, 63, 59, 0.025) 1px,
      transparent 1px,
      transparent 28px
    );
  pointer-events: none;
}

.career-premium-hero {
  position: relative;
  padding-bottom: 22px;
}

.career-main > .career-premium-hero.section-space {
  padding-top: clamp(14px, 1.8vw, 24px);
  padding-bottom: clamp(22px, 3vw, 36px);
}

.career-premium-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  gap: 32px;
  align-items: start;
}

.career-premium-copy {
  position: relative;
  display: grid;
  align-content: start;
  gap: 22px;
  padding: clamp(42px, 5vw, 58px) clamp(30px, 4vw, 46px) clamp(30px, 4vw, 46px);
  border-radius: 38px;
  border: 1px solid rgba(234, 220, 223, 0.96);
  background:
    radial-gradient(circle at top left, rgba(184, 63, 59, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 247, 247, 0.98));
  box-shadow:
    0 34px 72px rgba(47, 42, 44, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  overflow: hidden;
}

.career-premium-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(184, 63, 59, 0.03), transparent 40%),
    repeating-linear-gradient(
      120deg,
      rgba(184, 63, 59, 0.03),
      rgba(184, 63, 59, 0.03) 1px,
      transparent 1px,
      transparent 22px
    );
  opacity: 0.52;
  pointer-events: none;
}

.career-premium-copy > * {
  position: relative;
  z-index: 1;
}

.career-premium-copy .section-tag,
.career-premium-head .section-tag,
.career-premium-intro-card .section-tag,
.career-premium-openings-copy .section-tag,
.career-premium-apply-copy .section-tag {
  width: fit-content;
  margin: 0;
  background: #b83f3b;
  border-color: #b83f3b;
  color: #ffffff;
}

.career-premium-brandline {
  margin: 0;
  color: #b83f3b;
  font-family: "Barlow", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.career-premium-copy h1 {
  margin: 0;
  max-width: 10.8ch;
  color: var(--navy-dark);
  font-size: clamp(2.8rem, 5vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.career-premium-lead {
  margin: 0;
  max-width: 58ch;
  color: #5f5255;
  font-size: 1.07rem;
  line-height: 1.8;
}

.career-premium-value-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.career-premium-value-strip article {
  display: grid;
  gap: 6px;
  min-height: 0;
  padding: 14px 15px 14px;
  border-radius: 22px;
  border: 1px solid rgba(233, 220, 222, 0.98);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 248, 248, 0.86));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.career-premium-value-strip strong {
  color: var(--navy-dark);
  font-size: 0.98rem;
  line-height: 1.3;
}

.career-premium-value-strip span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.career-premium-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.career-premium-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.career-premium-metrics article {
  display: grid;
  gap: 6px;
  padding: 18px 16px 16px;
  border-radius: 24px;
  border: 1px solid rgba(233, 220, 222, 0.98);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 245, 245, 0.84)),
    radial-gradient(circle at top right, rgba(184, 63, 59, 0.08), transparent 34%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 12px 26px rgba(47, 42, 44, 0.04);
}

.career-premium-metrics strong {
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}

.career-premium-metrics span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.career-premium-visual-stack {
  display: grid;
  gap: 16px;
  align-content: start;
}

.career-premium-visual {
  position: relative;
  align-self: start;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  min-height: auto;
  border-radius: 42px;
  border: 1px solid rgba(233, 220, 222, 0.96);
  background:
    linear-gradient(180deg, #f6efed, #f2e8e5),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.72), transparent 40%);
  box-shadow:
    0 36px 72px rgba(47, 42, 44, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.career-premium-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 26%, rgba(47, 42, 44, 0.12)),
    radial-gradient(circle at top left, rgba(184, 63, 59, 0.12), transparent 32%);
  pointer-events: none;
}

.career-premium-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.career-premium-visual-panel {
  display: grid;
  gap: 10px;
  padding: 24px 24px 22px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 241, 240, 0.98));
  border: 1px solid rgba(224, 203, 206, 0.92);
  box-shadow:
    0 22px 38px rgba(47, 42, 44, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.career-premium-visual-panel span {
  color: #b83f3b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.career-premium-visual-panel strong {
  color: #2e2326;
  font-size: 1.22rem;
  line-height: 1.42;
}

.career-premium-visual-panel p {
  margin: 0;
  color: #5f4e52;
  line-height: 1.6;
}

.career-premium-intro {
  margin-top: -2px;
}

.career-premium-intro-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.career-premium-intro-card {
  display: grid;
  gap: 12px;
  padding: 30px 26px;
  border-radius: 32px;
  border: 1px solid rgba(232, 219, 221, 0.96);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 247, 0.98)),
    radial-gradient(circle at top left, rgba(184, 63, 59, 0.08), transparent 34%);
  box-shadow: 0 24px 54px rgba(47, 42, 44, 0.07);
}

.career-premium-bullet-list {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.career-premium-bullet-list span {
  position: relative;
  padding-left: 20px;
  color: #4f4447;
  line-height: 1.58;
}

.career-premium-bullet-list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b83f3b;
  transform: translateY(-50%);
}

.career-premium-intro-card-lead h2,
.career-premium-head h2,
.career-premium-openings-copy h2,
.career-premium-apply-copy h2 {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.career-premium-intro-card p,
.career-premium-head p,
.career-premium-openings-copy p,
.career-premium-apply-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.74;
}

.career-premium-intro-card strong {
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.3;
}

.career-premium-head {
  display: grid;
  gap: 14px;
  justify-items: start;
  margin-bottom: 28px;
}

.career-premium-head-split {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  align-items: start;
  gap: 24px;
}

.career-premium-head-note {
  display: grid;
  gap: 8px;
  padding: 22px 22px;
  border-radius: 26px;
  border: 1px solid rgba(232, 219, 221, 0.96);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 246, 246, 0.94));
  box-shadow: 0 20px 40px rgba(47, 42, 44, 0.06);
}

.career-premium-head-note strong {
  color: var(--navy-dark);
  font-size: 1rem;
  line-height: 1.45;
}

.career-premium-head-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.career-premium-department-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.career-premium-department-card {
  position: relative;
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 0;
  padding: 24px 22px;
  border-radius: 30px;
  border: 1px solid rgba(233, 220, 222, 0.98);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 247, 0.98)),
    radial-gradient(circle at top right, rgba(184, 63, 59, 0.1), transparent 34%);
  box-shadow: 0 24px 50px rgba(47, 42, 44, 0.08);
  overflow: hidden;
}

.career-premium-department-card::after {
  content: "";
  position: absolute;
  right: -14px;
  top: -14px;
  width: 88px;
  height: 88px;
  border-radius: 30px;
  background: rgba(184, 63, 59, 0.06);
}

.career-premium-department-index {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: #b83f3b;
  color: #ffffff;
  font-family: "Barlow", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.career-premium-department-card h3 {
  margin: 0;
  color: var(--navy-dark);
  font-size: 1.34rem;
  line-height: 1.15;
}

.career-premium-department-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.career-premium-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.career-premium-chip-row span,
.career-premium-role-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fffefe, #fff4f5);
  border: 1px solid rgba(232, 214, 216, 0.96);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.career-premium-openings-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: 24px;
  align-items: start;
}

.career-premium-openings-copy {
  display: grid;
  gap: 18px;
  padding: 34px 30px;
  border-radius: 34px;
  border: 1px solid rgba(232, 219, 221, 0.96);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 247, 0.98)),
    radial-gradient(circle at top left, rgba(184, 63, 59, 0.1), transparent 36%);
  box-shadow: 0 26px 54px rgba(47, 42, 44, 0.08);
}

.career-premium-openings-note {
  display: grid;
  gap: 8px;
  padding: 18px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(232, 216, 219, 0.96);
}

.career-premium-openings-note strong {
  color: var(--navy);
  font-size: 1rem;
}

.career-premium-openings-note p {
  margin: 0;
}

.career-premium-openings-summary {
  display: grid;
  gap: 12px;
}

.career-premium-openings-summary article {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(232, 216, 219, 0.96);
}

.career-premium-openings-summary strong {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.career-premium-openings-summary span {
  color: var(--muted);
  line-height: 1.6;
}

.career-premium-role-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 20px;
  align-items: start;
}

.career-premium-role-stack {
  display: grid;
  gap: 20px;
  align-items: start;
}

.career-premium-role-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 0;
  padding: 22px 21px;
  border-radius: 30px;
  border: 1px solid rgba(232, 219, 221, 0.96);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 247, 0.98)),
    radial-gradient(circle at top right, rgba(184, 63, 59, 0.1), transparent 36%);
  box-shadow: 0 24px 52px rgba(47, 42, 44, 0.08);
}

.career-premium-role-card-featured {
  min-height: 0;
  padding: 26px 24px;
  background:
    linear-gradient(180deg, rgba(184, 63, 59, 0.98), rgba(154, 49, 45, 0.98)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 34%);
  border-color: rgba(184, 63, 59, 0.92);
  box-shadow: 0 28px 58px rgba(184, 63, 59, 0.24);
}

.career-premium-role-card h3 {
  margin: 0;
  color: var(--navy-dark);
  font-size: 1.32rem;
  line-height: 1.18;
}

.career-premium-role-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.career-premium-role-card-featured h3,
.career-premium-role-card-featured p,
.career-premium-role-card-featured .career-premium-role-meta span {
  color: #ffffff;
}

.career-premium-role-card-featured .career-premium-role-meta span {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.career-premium-role-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.career-premium-role-button {
  width: fit-content;
  margin-top: auto;
}

.career-premium-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.career-premium-process-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 24px 22px;
  border-radius: 28px;
  border: 1px solid rgba(232, 219, 221, 0.96);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 247, 0.98)),
    radial-gradient(circle at top left, rgba(184, 63, 59, 0.08), transparent 34%);
  box-shadow: 0 22px 48px rgba(47, 42, 44, 0.07);
  overflow: hidden;
}

.career-premium-process-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #b83f3b, rgba(184, 63, 59, 0.2));
}

.career-premium-process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #b83f3b;
  color: #ffffff;
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.career-premium-process-card strong {
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.25;
}

.career-premium-process-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.career-premium-apply-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1.14fr);
  gap: 24px;
  align-items: start;
}

.career-premium-apply-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 34px;
  border: 1px solid rgba(232, 219, 221, 0.96);
  background:
    linear-gradient(180deg, rgba(47, 42, 44, 0.96), rgba(61, 55, 58, 0.94)),
    radial-gradient(circle at top left, rgba(184, 63, 59, 0.22), transparent 36%);
  box-shadow: 0 28px 58px rgba(47, 42, 44, 0.14);
}

.career-premium-apply-copy h2,
.career-premium-apply-copy p,
.career-premium-apply-copy strong,
.career-premium-apply-copy a,
.career-premium-apply-copy span {
  color: #ffffff;
}

.career-premium-apply-copy p {
  line-height: 1.76;
}

.career-premium-apply-points {
  display: grid;
  gap: 14px;
}

.career-premium-apply-points article,
.career-premium-apply-note {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.career-premium-apply-points strong,
.career-premium-apply-note strong {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.career-premium-apply-points a,
.career-premium-apply-points span {
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.6;
}

.career-premium-apply-points a:hover,
.career-premium-apply-points a:focus-visible {
  color: #ffd8d8;
}

.career-premium-apply-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.career-premium-apply-checklist {
  display: grid;
  gap: 12px;
  padding: 18px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.career-premium-apply-checklist strong {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.career-premium-apply-checklist ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.career-premium-apply-checklist li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.68;
}

.career-premium-apply-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffd7d5;
  transform: translateY(-50%);
}

.career-premium-form-card {
  padding: clamp(26px, 4vw, 38px);
  border-radius: 34px;
  border: 1px solid rgba(232, 219, 221, 0.96);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 248, 248, 0.98)),
    radial-gradient(circle at top right, rgba(184, 63, 59, 0.1), transparent 36%);
  box-shadow: 0 28px 58px rgba(47, 42, 44, 0.1);
}

.career-premium-form-card h3 {
  margin: 0 0 22px;
  color: var(--navy-dark);
  font-size: 1.56rem;
}

.career-premium-form-card .contact-connect-form {
  display: grid;
  gap: 18px;
}

.career-premium-form-card .contact-connect-field select {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(227, 212, 215, 0.98);
  background: #ffffff;
  color: var(--text);
  font: inherit;
  outline: none;
}

.career-premium-form-card .contact-connect-field select:focus,
.career-premium-form-card .contact-connect-field input:focus,
.career-premium-form-card .contact-connect-field textarea:focus {
  border-color: rgba(184, 63, 59, 0.42);
  box-shadow: 0 0 0 4px rgba(184, 63, 59, 0.08);
}

@media (max-width: 1180px) {
  .career-premium-hero-shell,
  .career-premium-openings-shell,
  .career-premium-apply-shell,
  .career-premium-intro-grid {
    grid-template-columns: 1fr;
  }

  .career-premium-head-split,
  .career-premium-role-grid {
    grid-template-columns: 1fr;
  }

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

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

  .career-premium-visual {
    aspect-ratio: 3 / 2;
    min-height: auto;
  }
}

@media (max-width: 860px) {
  .career-premium-department-grid,
  .career-premium-role-grid,
  .career-premium-process-grid,
  .career-premium-value-strip {
    grid-template-columns: 1fr;
  }

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

  .career-premium-copy,
  .career-premium-intro-card,
  .career-premium-department-card,
  .career-premium-openings-copy,
  .career-premium-role-card,
  .career-premium-process-card,
  .career-premium-apply-copy,
  .career-premium-form-card {
    padding: 22px 20px;
    border-radius: 24px;
  }

  .career-premium-copy h1,
  .career-premium-intro-card-lead h2,
  .career-premium-head h2,
  .career-premium-openings-copy h2,
  .career-premium-apply-copy h2 {
    max-width: 100%;
    font-size: clamp(1.9rem, 7.6vw, 2.6rem);
  }

  .career-premium-visual {
    aspect-ratio: 3 / 2;
    min-height: auto;
    border-radius: 28px;
  }

  .career-premium-visual-panel {
    padding: 16px;
    border-radius: 18px;
  }

  .career-premium-role-stack,
  .career-premium-openings-summary {
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .career-premium-metrics {
    grid-template-columns: 1fr;
  }
}

.subpage-body {
  background:
    radial-gradient(circle at top left, rgba(184, 63, 59, 0.08), transparent 24%),
    linear-gradient(180deg, #fffefe, #fff8f8 44%, #fffdfd 100%);
}

.subpage-main {
  position: relative;
  display: grid;
  gap: clamp(14px, 2.2vw, 26px);
  padding-top: 10px;
  padding-bottom: 42px;
}

.subpage-main::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 520px;
  background:
    linear-gradient(180deg, rgba(255, 252, 252, 0.94), rgba(255, 252, 252, 0)),
    repeating-linear-gradient(
      120deg,
      rgba(184, 63, 59, 0.025),
      rgba(184, 63, 59, 0.025) 1px,
      transparent 1px,
      transparent 30px
    );
  pointer-events: none;
}

.subpage-hero {
  position: relative;
}

.subpage-main > .subpage-hero.section-space {
  padding-top: clamp(14px, 1.8vw, 24px);
  padding-bottom: clamp(22px, 3vw, 36px);
}

.subpage-main > .section-space:not(.subpage-hero),
.career-premium-main > .section-space:not(.career-premium-hero) {
  padding-block: clamp(22px, 3vw, 38px);
}

/* END: Custom premium career page redesign system by Aditya Raj. */

/* Custom home page spacing refinement. */
.contact-connect-section.section-space {
  padding-bottom: clamp(18px, 2vw, 26px) !important;
}

.clients-showcase-section.section-space {
  padding-top: clamp(10px, 1.2vw, 16px) !important;
}

.clients-showcase-section .clients-showcase-shell {
  gap: 16px;
}

.subpage-hero-shell,
.subpage-section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 1.04fr);
  gap: 28px;
  align-items: start;
}

/* START: Custom shared standalone page system for about, products, projects, services, business, blogs and contact. */
.subpage-hero-copy,
.subpage-panel,
.subpage-card,
.subpage-person-card,
.subpage-client,
.subpage-blog-card,
.subpage-article-card,
.subpage-cta,
.subpage-note-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(233, 220, 222, 0.96);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.992), rgba(255, 247, 247, 0.982)),
    radial-gradient(circle at top left, rgba(184, 63, 59, 0.07), transparent 36%);
  box-shadow:
    0 24px 52px rgba(47, 42, 44, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.subpage-hero-copy,
.subpage-panel {
  display: grid;
  gap: 18px;
  padding: clamp(40px, 4.8vw, 56px) clamp(28px, 4vw, 44px) clamp(28px, 4vw, 44px);
  border-radius: 36px;
}

.subpage-hero-copy h1,
.subpage-section-head h2,
.subpage-panel h2,
.subpage-cta h2 {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.subpage-hero-copy h1 {
  max-width: 13ch;
}

.subpage-hero-copy .section-tag,
.subpage-section-head .section-tag,
.subpage-panel .section-tag,
.subpage-cta .section-tag {
  width: fit-content;
  margin: 0;
  background: #b83f3b;
  border-color: #b83f3b;
  color: #ffffff;
}

.subpage-brandline {
  margin: 0;
  color: #b83f3b;
  font-family: "Barlow", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.subpage-lead,
.subpage-section-head p,
.subpage-panel > p,
.subpage-card p,
.subpage-article-card p,
.subpage-blog-card p,
.subpage-note-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.74;
}

.subpage-stat-grid,
.subpage-mini-stat-grid,
.subpage-grid-2,
.subpage-grid-3,
.subpage-grid-4,
.subpage-client-grid,
.subpage-blog-grid,
.subpage-article-grid,
.subpage-people-grid {
  display: grid;
  gap: 18px;
  align-items: start;
}

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

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

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

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

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

.subpage-stat-grid article,
.subpage-mini-stat-grid article {
  display: grid;
  gap: 6px;
  padding: 16px 16px 15px;
  border-radius: 22px;
  border: 1px solid rgba(233, 220, 222, 0.96);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 246, 246, 0.88)),
    radial-gradient(circle at top right, rgba(184, 63, 59, 0.06), transparent 32%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.subpage-stat-grid strong,
.subpage-mini-stat-grid strong {
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1;
}

.subpage-stat-grid span,
.subpage-mini-stat-grid span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.subpage-section-head {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.subpage-card,
.subpage-note-card,
.subpage-blog-card,
.subpage-article-card,
.subpage-person-card,
.subpage-client {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 24px 22px;
  border-radius: 28px;
}

.subpage-card h3,
.subpage-blog-card h3,
.subpage-article-card h3,
.subpage-person-card h3 {
  margin: 0;
  color: var(--navy-dark);
  font-size: 1.28rem;
  line-height: 1.18;
}

.subpage-card strong,
.subpage-note-card strong,
.subpage-client strong {
  color: var(--navy-dark);
  font-size: 1.02rem;
  line-height: 1.4;
}

.subpage-card-dark,
.subpage-cta {
  background:
    radial-gradient(circle at top left, rgba(184, 63, 59, 0.32), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 216, 214, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(52, 39, 42, 0.985), rgba(37, 29, 31, 0.98));
  border-color: rgba(184, 63, 59, 0.22);
  box-shadow:
    0 28px 58px rgba(31, 24, 26, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.subpage-card-dark h2,
.subpage-card-dark h3,
.subpage-card-dark p,
.subpage-card-dark strong,
.subpage-card-dark li,
.subpage-card-dark span,
.subpage-cta h2,
.subpage-cta p,
.subpage-cta strong,
.subpage-cta li,
.subpage-cta span {
  color: #ffffff;
}

.subpage-card-dark .section-tag,
.subpage-cta .section-tag {
  background: #b83f3b;
  border-color: #b83f3b;
  color: #ffffff;
}

.subpage-bullet-list,
.subpage-plain-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.subpage-bullet-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.66;
}

.subpage-card-dark .subpage-bullet-list li,
.subpage-cta .subpage-bullet-list li {
  color: rgba(255, 255, 255, 0.9);
}

.subpage-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b83f3b;
  transform: translateY(-50%);
}

.subpage-card-dark .subpage-bullet-list li::before,
.subpage-cta .subpage-bullet-list li::before {
  background: #ffd8d6;
}

.subpage-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.subpage-pill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(232, 214, 216, 0.96);
  background: linear-gradient(180deg, #fffefe, #fff5f6);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.subpage-person-card img {
  width: 100%;
  height: clamp(460px, 36vw, 640px);
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  border: 1px solid rgba(231, 214, 217, 0.94);
  background: #efe4e2;
}

.subpage-person-card:nth-child(2) img {
  object-position: center 18%;
}

.subpage-client {
  text-align: center;
  justify-items: center;
}

.subpage-client-logo {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  border: 1px solid rgba(232, 214, 216, 0.92);
  background: linear-gradient(180deg, #ffffff, #fff5f5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.subpage-client-logo img {
  max-width: 46px;
  max-height: 46px;
}

.subpage-client span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.52;
}

.subpage-blog-card {
  gap: 14px;
}

.subpage-blog-card .mini-label,
.subpage-article-card .mini-label {
  width: fit-content;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(184, 63, 59, 0.08);
  color: #b83f3b;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.subpage-cta {
  display: grid;
  gap: 14px;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 34px;
}

.subpage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.subpage-footer .footer-pro-column a {
  text-decoration: none;
}

@media (max-width: 1180px) {
  .subpage-hero-shell,
  .subpage-section-split,
  .subpage-grid-4,
  .subpage-client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .subpage-hero-shell,
  .subpage-section-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .subpage-main {
    padding-top: 12px;
  }

  .subpage-grid-3,
  .subpage-grid-2,
  .subpage-blog-grid,
  .subpage-article-grid,
  .subpage-people-grid,
  .subpage-grid-4,
  .subpage-client-grid,
  .subpage-stat-grid,
  .subpage-mini-stat-grid {
    grid-template-columns: 1fr;
  }

  .subpage-hero-copy,
  .subpage-panel,
  .subpage-card,
  .subpage-note-card,
  .subpage-blog-card,
  .subpage-article-card,
  .subpage-person-card,
  .subpage-client,
  .subpage-cta {
    padding: 22px 20px;
    border-radius: 24px;
  }

  .subpage-hero-copy h1,
  .subpage-section-head h2,
  .subpage-panel h2,
  .subpage-cta h2 {
    max-width: 100%;
    font-size: clamp(1.95rem, 7vw, 2.7rem);
  }
}

@media (max-width: 760px) {
  .hero-image-wrap {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    min-height: unset !important;
    aspect-ratio: auto !important;
    padding: 16px 16px 18px !important;
    gap: 14px !important;
    border-radius: 26px !important;
    background:
      radial-gradient(circle at top center, rgba(184, 62, 58, 0.08), transparent 38%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 247, 248, 0.95) 100%) !important;
  }

  .hero-image-wrap::before,
  .hero-image-wrap::after {
    content: none !important;
    display: none !important;
  }

  .hero-image-wrap picture {
    order: 2 !important;
    display: block !important;
    width: 100% !important;
  }

  .hero-image {
    position: relative !important;
    inset: auto !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    padding: 0 !important;
    object-fit: contain !important;
    object-position: center center !important;
    transform: none !important;
    filter: saturate(1.03) contrast(1.01) !important;
  }

  .hero-image-wrap:hover .hero-image {
    transform: none !important;
  }

  .hero-image-overlay {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    order: 1 !important;
    width: 100% !important;
    max-width: none !important;
    padding: 4px 4px 0 !important;
    gap: 8px !important;
    text-align: center !important;
    align-items: center !important;
    justify-items: center !important;
    transform: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }

  .hero-image-overlay::after {
    content: none !important;
    display: none !important;
  }

  .hero-brandline {
    margin: 0 !important;
    font-size: clamp(1.05rem, 5vw, 1.28rem) !important;
    line-height: 1.15 !important;
    letter-spacing: 0.02em !important;
  }

  .hero-image-overlay h1 {
    margin: 0 !important;
    max-width: 11.6ch !important;
    font-size: clamp(2.24rem, 11vw, 3rem) !important;
    line-height: 0.94 !important;
    letter-spacing: -0.045em !important;
    white-space: normal !important;
    text-wrap: balance !important;
    text-shadow: none !important;
  }

  .hero-image-overlay h2 {
    margin: 0 !important;
    max-width: 24ch !important;
    font-size: clamp(0.92rem, 4.1vw, 1.06rem) !important;
    line-height: 1.3 !important;
    letter-spacing: 0.01em !important;
    white-space: normal !important;
    text-wrap: balance !important;
    text-shadow: none !important;
  }
}

/* END: Custom shared standalone page system for about, products, projects, services, business, blogs and contact. */

/* START: Final custom shared footer system used across home and all standalone pages. */
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(184, 63, 59, 0.28), transparent 20%),
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #241d20 0%, #1a1517 56%, #130f10 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(118deg, transparent 0 44%, rgba(255, 255, 255, 0.03) 44% 50%, transparent 50%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 112px
    );
  opacity: 0.34;
}

.site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #cf3134, rgba(207, 49, 52, 0.18), #cf6a4a);
  opacity: 0.9;
}

.site-footer .footer-pro {
  position: relative;
  z-index: 1;
  gap: 24px !important;
  padding-top: 40px !important;
  padding-bottom: 30px !important;
}

.site-footer .footer-pro-top,
.site-footer .footer-pro-grid,
.site-footer .footer-pro-bottom {
  position: relative;
  z-index: 1;
}

.site-footer .footer-pro-top {
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.72fr);
  gap: 24px;
  align-items: stretch;
  padding: 30px 32px 28px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 30px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top left, rgba(184, 63, 59, 0.3), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(207, 49, 52, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(40, 32, 35, 0.985), rgba(24, 19, 21, 0.99)) !important;
  box-shadow:
    0 38px 72px rgba(0, 0, 0, 0.3),
    0 16px 30px rgba(184, 63, 59, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.09) !important;
}

.site-footer .footer-pro-top::before {
  display: block !important;
  content: "";
  position: absolute;
  top: 18px;
  left: 30px;
  width: 120px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #cf3134, rgba(255, 255, 255, 0.2));
}

.site-footer .footer-logo {
  width: min(286px, 100%);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.18));
}

.site-footer .footer-pro-brand > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  position: relative;
  isolation: isolate;
  padding: 14px 20px 13px;
  border: 1px solid rgba(212, 187, 176, 0.36);
  border-radius: 24px;
  background:
    linear-gradient(140deg, rgba(226, 208, 199, 0.98), rgba(182, 159, 151, 0.9)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 58%),
    linear-gradient(180deg, rgba(123, 102, 96, 0.18), rgba(255, 255, 255, 0));
  box-shadow:
    0 20px 38px rgba(0, 0, 0, 0.22),
    0 8px 20px rgba(184, 63, 59, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(12px);
}

.site-footer .footer-pro-brand > a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 44%),
    linear-gradient(90deg, rgba(184, 63, 59, 0.18), transparent 22%, transparent 78%, rgba(207, 106, 74, 0.16));
  opacity: 0.92;
}

.site-footer .footer-pro-brand {
  gap: 16px;
}

.site-footer .footer-pro-brand p {
  max-width: 62ch;
  color: rgba(248, 241, 241, 0.82) !important;
  font-size: 0.98rem;
  line-height: 1.78;
}

.site-footer .footer-pro-tags {
  gap: 10px;
}

.site-footer .footer-pro-tags span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.11) !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #fff1f1 !important;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: none !important;
}

.site-footer .footer-pro-actions {
  align-items: center;
  justify-content: flex-end !important;
}

.site-footer .footer-pro-button {
  min-width: 200px;
  min-height: 52px;
  border-radius: 18px;
  justify-content: center;
}

.site-footer .footer-pro-button-secondary {
  border-color: transparent !important;
  background: linear-gradient(135deg, #cf3134, #b83f3b) !important;
  color: #ffffff !important;
  box-shadow:
    0 18px 30px rgba(184, 63, 59, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.site-footer .footer-pro-button-secondary:hover {
  background: linear-gradient(135deg, #db5752, #c44d48) !important;
  transform: translateY(-2px);
  box-shadow:
    0 22px 36px rgba(184, 63, 59, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.site-footer .footer-pro-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch;
}

.site-footer .footer-pro-column {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 100%;
  padding: 22px 20px 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 24px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.028)),
    radial-gradient(circle at top left, rgba(184, 63, 59, 0.09), transparent 38%) !important;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

.site-footer .footer-pro-column::before {
  display: block !important;
  content: "";
  width: 44px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #cf3134, rgba(255, 255, 255, 0.18));
}

.site-footer .footer-pro-column h3 {
  margin: 0 0 6px;
  color: #fff3f3 !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer .footer-pro-column a,
.site-footer .footer-pro-column span {
  color: rgba(255, 255, 255, 0.74) !important;
  font-size: 0.94rem;
  line-height: 1.66;
  text-decoration: none;
}

.site-footer .footer-pro-column a:hover {
  color: #ffffff !important;
}

.site-footer .footer-pro-column:hover {
  transform: translateY(-3px);
  border-color: rgba(236, 206, 197, 0.2) !important;
  box-shadow:
    0 24px 42px rgba(0, 0, 0, 0.22),
    0 10px 18px rgba(184, 63, 59, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.site-footer .footer-inline-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.site-footer .footer-inline-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  margin-top: 4px;
  color: #f09993;
}

.site-footer .footer-address-block {
  display: grid;
  gap: 8px;
  padding: 2px 0 0;
}

.site-footer .footer-address-block strong {
  color: #fff6f6;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.site-footer .footer-address-block span {
  color: rgba(255, 255, 255, 0.74) !important;
  line-height: 1.62;
}

.site-footer .footer-pro-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}

.site-footer .footer-pro-social a {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 16px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)) !important;
  box-shadow:
    0 16px 28px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.site-footer .footer-pro-social a:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: rgba(207, 49, 52, 0.46) !important;
  background: rgba(184, 63, 59, 0.14) !important;
}

.site-footer .footer-pro-social svg {
  width: 20px;
  height: 20px;
  fill: #ffffff !important;
}

.site-footer .footer-pro-bottom {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding-top: 18px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  text-align: center;
}

.site-footer .footer-pro-bottom p {
  margin: 0;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.56) !important;
  font-size: 0.88rem;
}

.site-footer .footer-pro-bottom p a {
  color: rgba(255, 255, 255, 0.84) !important;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition:
    color 220ms ease,
    border-color 220ms ease,
    opacity 220ms ease;
}

.site-footer .footer-pro-bottom p a:hover {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.56);
}

.site-footer .footer-pro-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.site-footer .footer-pro-bottom-links a {
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 0.9rem;
  text-decoration: none;
}


.site-footer .footer-pro-bottom-links a:hover {
  color: #ffffff !important;
}

@media (max-width: 1100px) {
  .site-footer .footer-pro-top {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 26px 24px 24px !important;
  }

  .site-footer .footer-pro-actions {
    justify-content: flex-start !important;
  }
}

@media (max-width: 760px) {
  .site-footer .footer-pro {
    gap: 18px !important;
    padding-top: 30px !important;
    padding-bottom: 24px !important;
  }

  .site-footer .footer-pro-top {
    gap: 18px;
    padding: 24px 20px 22px !important;
    border-radius: 26px !important;
  }

  .site-footer .footer-pro-brand > a {
    padding: 12px 14px 11px;
    border-radius: 20px;
  }

  .site-footer .footer-pro-top::before {
    left: 20px;
    width: 88px;
  }

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

  .site-footer .footer-pro-column {
    padding: 20px 18px 16px !important;
    border-radius: 22px !important;
  }

  .site-footer .footer-pro-button {
    width: 100%;
    min-width: 0;
  }

  .site-footer .footer-pro-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
  }

  .site-footer .footer-pro-bottom p {
    max-width: 320px;
    margin: 0 auto;
    font-size: 0.9rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.72) !important;
    text-wrap: balance;
  }

  .site-footer .footer-pro-bottom-links {
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .site-footer .footer-pro-bottom-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: #fff6f6 !important;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  .site-footer .footer-pro-bottom-links a:hover {
    background: rgba(184, 63, 59, 0.18);
    border-color: rgba(207, 49, 52, 0.34);
  }
}
/* END: Final custom shared footer system used across home and all standalone pages. */

/* START: Custom shared homepage hero slider using three uploaded panel images by Aditya Raj. */
.hero-image-slider {
  isolation: isolate;
}

.hero-slider-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 46%, rgba(246, 242, 243, 0.92) 100%);
}

.hero-image-track {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 1050ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-image-panel {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #ffffff;
}

.hero-track-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: saturate(1.03) contrast(1.01);
  transform: scale(1);
  opacity: 0.94;
  transition:
    transform 1050ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 700ms ease;
}

.hero-track-image-lift {
  object-position: center 35%;
}

.hero-image-panel.is-active .hero-track-image {
  transform: scale(1.015);
  opacity: 1;
}

.hero-image-slider .hero-image-overlay {
  z-index: 3;
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 54px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(227, 216, 219, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 28px rgba(41, 34, 36, 0.1);
  transform: translateX(-50%);
}

.hero-slider-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(62, 54, 57, 0.2);
  cursor: pointer;
  transition:
    width 260ms ease,
    transform 260ms ease,
    background-color 260ms ease,
    opacity 260ms ease;
}

.hero-slider-dot:hover,
.hero-slider-dot:focus-visible {
  background: rgba(184, 63, 59, 0.65);
  outline: none;
  transform: translateY(-1px);
}

.hero-slider-dot.is-active {
  width: 28px;
  background: #b83f3b;
}

@media (max-width: 760px) {
  .hero-slider-stage {
    position: relative !important;
    inset: auto !important;
    order: 2 !important;
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    border-radius: 20px !important;
  }

  .hero-image-track {
    position: absolute !important;
    inset: 0 !important;
  }

  .hero-image-panel {
    background: #ffffff;
  }

  .hero-track-image {
    object-position: center center !important;
  }

  .hero-slider-dots {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    order: 3 !important;
    margin: 2px auto 0 !important;
    transform: none !important;
  }
}
/* END: Custom shared homepage hero slider using three uploaded panel images by Aditya Raj. */
.hero-image-overlay h1 {
  font-family: 'SF Pro Display Medium', 'Barlow', sans-serif !important;
  font-weight: 500 !important;
}




