:root {
  --ink: #171a1f;
  --muted: #5c6269;
  --paper: #f5f6f3;
  --white: #ffffff;
  --line: #d8dcd7;
  --red: #bd4935;
  --red-dark: #913525;
  --teal: #28685e;
  --yellow: #d69a2d;
  --steel: #45677b;
  --max: 1180px;
  --header: 72px;
  --radius: 6px;
  --shadow: 0 14px 40px rgba(23, 26, 31, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

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

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

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

button,
.button {
  min-height: 46px;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: var(--header);
  border-bottom: 1px solid rgba(216, 220, 215, 0.85);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: var(--red);
  font-size: 15px;
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 23px;
  font-size: 14px;
  font-weight: 650;
}

.language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.language-select {
  min-height: 38px;
  max-width: 145px;
  padding: 8px 30px 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.language-select:focus {
  border-color: var(--teal);
  outline: 2px solid rgba(40, 104, 94, 0.16);
}

.language-menu {
  display: none;
}

.site-nav a:not(.nav-cta) {
  padding-block: 24px 20px;
  border-bottom: 3px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--red-dark);
  border-bottom-color: var(--red);
}

.site-nav a.nav-liquid {
  padding: 9px 12px;
  border: 1px solid rgba(151, 45, 30, 0.22);
  border-radius: var(--radius);
  color: var(--red-dark);
  background: rgba(151, 45, 30, 0.06);
}

.site-nav a.nav-liquid:hover,
.site-nav a.nav-liquid[aria-current="page"] {
  border-color: rgba(151, 45, 30, 0.38);
  background: rgba(151, 45, 30, 0.1);
}

.site-nav a.social-icon {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
}

.site-nav a.social-icon:hover {
  color: var(--white);
  border-color: #0a66c2;
  background: #0a66c2;
}

.linkedin-mark,
.facebook-mark {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  color: var(--white);
  background: #0a66c2;
  font-size: 12px;
  font-weight: 850;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1;
}

.facebook-mark {
  background: #1877f2;
}

.social-icon .linkedin-mark,
.social-icon .facebook-mark {
  width: 22px;
  height: 22px;
  font-size: 14px;
}

.social-icon:hover .linkedin-mark {
  color: #0a66c2;
  background: var(--white);
}

.social-icon:hover .facebook-mark {
  color: #1877f2;
  background: var(--white);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid var(--red);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--red);
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.nav-cta:hover,
.button:hover {
  border-color: var(--red-dark);
  background: var(--red-dark);
  transform: translateY(-1px);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--white);
  background: rgba(10, 12, 15, 0.34);
}

.button.secondary:hover {
  border-color: var(--white);
  background: rgba(10, 12, 15, 0.62);
}

.button.ghost {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.button.ghost:hover {
  color: var(--white);
  background: var(--ink);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.menu-button::before {
  content: "\2630";
  font-size: 24px;
  line-height: 1;
}

.menu-button[aria-expanded="true"]::before {
  content: "\00d7";
  font-size: 30px;
}

.menu-button i {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(760px, calc(82svh - var(--header)));
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hero-media-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media-grid img:nth-child(1) {
  object-position: center;
}

.hero-media-grid img:nth-child(2) {
  object-position: 58% center;
}

.hero-media-grid img:nth-child(3) {
  object-position: center;
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(12, 15, 18, 0.7);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-block: 76px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero .lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin: 33px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  list-style: none;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-band {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

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

.trust-item {
  min-height: 112px;
  padding: 25px 22px;
  border-right: 1px solid var(--line);
}

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

.trust-item strong {
  display: block;
  margin-bottom: 3px;
  font-size: 18px;
  line-height: 1.25;
}

.trust-item span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding-block: 92px;
}

.section.compact {
  padding-block: 64px;
}

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

.section.dark {
  color: var(--white);
  background: var(--ink);
}

.section.dark p,
.section.dark .section-intro {
  color: rgba(255, 255, 255, 0.74);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(360px, 1.15fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading h2,
.split-copy h2,
.cta-band h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-intro,
.split-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.service-card-media {
  height: 220px;
  overflow: hidden;
  background: #e5e7e4;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.service-card:hover .service-card-media img {
  transform: scale(1.025);
}

.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.service-card .tag,
.small-label {
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 8px 0 9px;
  font-size: 25px;
  line-height: 1.15;
}

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

.mini-note {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-left: 3px solid var(--accent);
  background: rgba(34, 197, 94, 0.08);
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--red-dark);
  font-weight: 800;
}

.text-link:hover {
  text-decoration: underline;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 64px;
  align-items: center;
}

.split.reverse .split-media {
  order: 2;
}

.split-media {
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #e5e7e4;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.split-media.about-photo img {
  object-position: 23% center;
}

.split-copy .eyebrow {
  color: var(--red-dark);
}

.split-copy h2 {
  margin-bottom: 23px;
}

.liquid-entry {
  background: linear-gradient(180deg, #f8fbfa 0%, #eef5f3 100%);
}

.liquid-entry .split-media {
  min-height: 430px;
}

.liquid-entry .split-media img {
  min-height: 430px;
  object-fit: cover;
}

.check-list,
.plain-list {
  display: grid;
  gap: 12px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}

.check-list svg {
  margin-top: 3px;
  color: var(--teal);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.process-step {
  min-height: 250px;
  padding: 31px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.process-step:last-child {
  border-right: 0;
}

.step-number {
  display: block;
  margin-bottom: 36px;
  color: var(--yellow);
  font-size: 15px;
  font-weight: 850;
}

.process-step h3 {
  margin: 0 0 11px;
  font-size: 22px;
}

.process-step p {
  margin: 0;
  font-size: 15px;
}

.quote {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 750;
  line-height: 1.2;
}

.quote-source {
  margin-top: 24px;
  color: var(--muted);
  font-weight: 700;
}

.cta-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 52px;
  align-items: center;
  padding: 54px 0;
}

.cta-band p {
  max-width: 650px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.cta-band .section-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  padding-block: 58px 30px;
  color: rgba(255, 255, 255, 0.74);
  background: #101318;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
}

.footer-brand {
  color: var(--white);
}

.footer-brand p {
  max-width: 370px;
  margin: 18px 0 0;
}

.footer-group h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 14px;
}

.footer-group a {
  display: block;
  margin-top: 8px;
  font-size: 14px;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.45;
}

.footer-group a.contact-item {
  margin-top: 0;
}

.contact-icon {
  display: inline-flex;
  width: 28px;
  min-width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.contact-icon-whatsapp {
  color: #25d366;
}

.contact-icon-linkedin {
  color: #0a66c2;
}

.contact-icon-facebook {
  color: #1877f2;
}

.contact-text {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-note {
  color: rgba(255, 255, 255, 0.66);
}

.footer-group a.icon-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.footer-language {
  margin-top: 16px;
}

.footer-language .language-select {
  width: 100%;
  max-width: 220px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 45px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
}

.footer-bottom a.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.footer-bottom .linkedin-mark,
.footer-bottom .facebook-mark {
  width: 14px;
  height: 14px;
  font-size: 10px;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 520px;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.43;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 15, 0.4);
  content: "";
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding-block: 95px 62px;
}

.page-hero .lead {
  max-width: 740px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-item {
  border-bottom: 3px solid var(--line);
  padding: 25px 0;
}

.product-item svg {
  color: var(--steel);
}

.product-item h3 {
  margin: 18px 0 7px;
  font-size: 22px;
}

.product-item p {
  margin: 0;
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  grid-template-rows: 260px 260px;
  gap: 12px;
}

.gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e5e7e4;
}

.gallery figure:first-child {
  grid-row: 1 / 3;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 12px 15px;
  color: var(--white);
  background: rgba(16, 19, 24, 0.82);
  font-size: 13px;
}

.spec-note {
  margin-top: 28px;
  padding: 20px 22px;
  border-left: 4px solid var(--yellow);
  background: var(--paper);
  color: var(--muted);
}

.timeline {
  display: grid;
  max-width: 900px;
  gap: 0;
  margin-inline: auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 35px;
  padding-block: 30px;
  border-bottom: 1px solid var(--line);
}

.timeline-label {
  color: var(--red-dark);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.timeline-item h3 {
  margin: 0 0 7px;
  font-size: 24px;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
}

.rfq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 70px;
  align-items: start;
}

.rfq-aside {
  position: sticky;
  top: calc(var(--header) + 32px);
}

.rfq-aside h2 {
  margin: 0 0 18px;
  font-size: 43px;
  line-height: 1.08;
}

.rfq-aside p {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.contact-list svg {
  flex: 0 0 auto;
  color: var(--red);
}

.rfq-trust-note,
.rfq-form-intro {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(40, 104, 94, 0.22);
  border-left: 4px solid var(--teal);
  background: #f7faf7;
  color: var(--ink);
  font-weight: 750;
  line-height: 1.5;
}

.rfq-form-intro {
  margin: 0 0 22px;
}

.rfq-form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

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

.field {
  display: grid;
  gap: 7px;
}

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

.field label {
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #bfc5c0;
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  outline: 2px solid rgba(40, 104, 94, 0.16);
}

.form-help {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--teal);
  font-weight: 700;
}

.form-status.error {
  color: var(--red-dark);
}

.form-status a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.project-type-hint {
  display: block;
  min-height: 38px;
  color: var(--teal);
  font-weight: 700;
}

.keyword-hub,
.quick-rfq-strip {
  padding-block: 44px;
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.quick-rfq-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.quick-rfq-inner h2,
.keyword-hub h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
}

.quick-rfq-inner p,
.keyword-hub p {
  margin: 0;
  color: var(--muted);
}

.keyword-grid,
.trust-card-grid,
.case-grid,
.landing-grid {
  display: grid;
  gap: 16px;
}

.keyword-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

.keyword-grid a {
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: var(--white);
  font-weight: 750;
}

.keyword-grid a:hover {
  border-color: var(--red);
  color: var(--red-dark);
}

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

.trust-card,
.case-card,
.info-panel,
.faq-list details,
.related-pages a {
  border: 1px solid var(--line);
  background: var(--white);
}

.trust-card,
.case-card,
.info-panel {
  padding: 24px;
}

.trust-card h3,
.case-card h3,
.info-panel h2 {
  margin: 0 0 10px;
}

.trust-card p,
.case-card p,
.info-panel p,
.info-panel li {
  color: var(--muted);
}

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

.case-card dl {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
}

.case-card dt {
  font-weight: 800;
}

.case-card dd {
  margin: 0;
  color: var(--muted);
}

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

.info-panel ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.related-pages {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.related-pages a {
  padding: 10px 14px;
  font-weight: 750;
}

.sticky-actions {
  position: fixed;
  z-index: 60;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.sticky-actions .button {
  box-shadow: var(--shadow);
}

.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit {
  margin-top: 21px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.field-note {
  color: var(--muted);
  font-size: 12px;
}

.field input[type="file"] {
  min-height: 54px;
  padding: 10px;
  background: var(--white);
}

.field input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: var(--paper);
  font-weight: 750;
  cursor: pointer;
}

.consent-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 19px;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--teal);
}

.form-trap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.success-panel {
  max-width: 760px;
  margin-inline: auto;
  padding: 48px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--teal);
  border-radius: var(--radius);
  text-align: center;
  background: var(--white);
  box-shadow: var(--shadow);
}

.success-panel > svg {
  width: 52px;
  height: 52px;
  color: var(--teal);
}

.success-panel h1 {
  margin: 18px 0 10px;
  font-size: clamp(36px, 6vw, 58px);
  line-height: 1.05;
}

.success-panel p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.success-panel .section-actions {
  justify-content: center;
}

html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .site-nav,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .section-actions,
html[dir="rtl"] .contact-list a,
html[dir="rtl"] .check-list li,
html[dir="rtl"] .footer-group a.icon-link,
html[dir="rtl"] .sticky-actions {
  direction: rtl;
}

html[dir="rtl"] .check-list li {
  grid-template-columns: 1fr 22px;
}

html[dir="rtl"] .spec-note,
html[dir="rtl"] .rfq-trust-note,
html[dir="rtl"] .rfq-form-intro {
  border-left: 1px solid rgba(40, 104, 94, 0.22);
  border-right: 4px solid var(--teal);
}

html[dir="rtl"] .spec-note {
  border-right-color: var(--yellow);
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    z-index: 60;
    top: var(--header);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a:not(.nav-cta) {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a.nav-liquid {
    margin-block: 6px;
    padding: 13px 12px;
    border: 1px solid rgba(151, 45, 30, 0.26);
    border-radius: var(--radius);
  }

  .site-nav a.social-icon {
    width: 100%;
    height: auto;
    justify-content: flex-start;
    gap: 9px;
    padding: 13px 4px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
  }

  .site-nav a.social-icon[aria-label*="LinkedIn"]::after {
    content: "LinkedIn";
  }

  .site-nav a.social-icon[aria-label*="Facebook"]::after {
    content: "Facebook";
  }

  .language-switcher {
    width: 100%;
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
  }

  .language-select {
    width: 100%;
    max-width: none;
  }

  .nav-cta {
    margin-top: 15px;
  }

  .menu-button {
    display: inline-flex;
  }

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

  .trust-item:nth-child(2),
  .process-step:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .process-step:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .service-grid,
  .product-grid,
  .keyword-grid,
  .trust-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .section-heading,
  .rfq-layout,
  .quick-rfq-inner,
  .landing-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 20px;
  }

  .split.reverse .split-media {
    order: initial;
  }

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

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

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

  .rfq-aside {
    position: static;
  }
}

@media (max-width: 680px) {
  :root {
    --header: 64px;
  }

  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand {
    font-size: 17px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-media-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .hero-media-grid img:first-child {
    grid-column: 1 / 3;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(42px, 15vw, 64px);
  }

  .hero-content {
    padding-block: 68px;
  }

  .hero-actions .button,
  .section-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    gap: 11px;
  }

  .trust-grid,
  .service-grid,
  .product-grid,
  .keyword-grid,
  .trust-card-grid,
  .case-grid,
  .landing-grid,
  .process-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:nth-child(2),
  .process-step,
  .process-step:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-step,
  .process-step:nth-child(2) {
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .trust-item:last-child,
  .process-step:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 68px;
  }

  .section-heading h2,
  .split-copy h2,
  .cta-band h2 {
    font-size: 38px;
  }

  .split {
    gap: 35px;
  }

  .split-media,
  .split-media img {
    min-height: 390px;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 190px 190px;
  }

  .gallery figure:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
  }

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

  .rfq-form {
    padding: 22px 18px;
  }

  .success-panel {
    padding: 34px 20px;
  }

  .field.full {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .sticky-actions {
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .sticky-actions .button {
    width: 100%;
    padding-inline: 10px;
    font-size: 13px;
  }

  body {
    padding-bottom: 72px;
  }
}



/* SSW controlled B2B visual refinements */
.fuel-station-solution-bridge p,
.fuel-station-solution-bridge p strong {
  color: #ffffff;
}

.nav-cta,
.b2b-actions .button,
.b2b-quick-rfq .button,
.b2b-final-cta .button {
  min-height: 48px;
  padding: 12px 20px;
  border-color: #274d63;
  border-radius: 8px;
  background: #274d63;
  color: #fff;
  font-weight: 780;
}

.nav-cta:hover,
.b2b-actions .button:hover,
.b2b-quick-rfq .button:hover,
.b2b-final-cta .button:hover {
  border-color: #1f3f52;
  background: #1f3f52;
}

.b2b-actions .button.ghost {
  border-color: rgba(39, 77, 99, 0.38);
  background: #fff;
  color: #203746;
}

.b2b-actions .button.ghost:hover {
  border-color: #274d63;
  background: #eef4f7;
  color: #17232b;
}

.b2b-home-hero .b2b-actions .button.ghost,
.b2b-final-cta .b2b-actions .button.ghost {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.92);
  color: #17232b;
}

.b2b-home-hero .b2b-actions .button.ghost:hover,
.b2b-final-cta .b2b-actions .button.ghost:hover {
  border-color: #fff;
  background: #fff;
}

.site-nav a:not(.nav-cta)[aria-current="page"] {
  color: #274d63;
  border-bottom-color: #274d63;
}

.b2b-home-hero .hero-media-grid {
  grid-template-columns: 1fr;
}

.b2b-home-hero .hero-media-grid img {
  grid-column: 1 / -1;
  object-position: 56% center;
  filter: brightness(1.08) contrast(1.01) saturate(1);
}

.b2b-home-hero .hero-media-grid img:first-child {
  grid-column: 1 / -1;
}

.b2b-home-hero::before {
  background:
    linear-gradient(90deg, rgba(24, 57, 79, 0.66) 0%, rgba(38, 76, 101, 0.46) 38%, rgba(44, 78, 99, 0.16) 70%, rgba(44, 78, 99, 0.04) 100%),
    linear-gradient(180deg, rgba(24, 57, 79, 0.04) 0%, rgba(24, 57, 79, 0.11) 100%);
}

.b2b-product-hero::after {
  background:
    linear-gradient(90deg, rgba(18, 31, 43, 0.74) 0%, rgba(18, 31, 43, 0.56) 44%, rgba(18, 31, 43, 0.22) 100%),
    linear-gradient(180deg, rgba(18, 31, 43, 0.08) 0%, rgba(18, 31, 43, 0.34) 100%);
}

.b2b-home-hero .hero-content {
  max-width: 880px;
  padding-block: clamp(54px, 6vw, 72px) clamp(64px, 6.6vw, 82px);
}

.b2b-home-hero {
  min-height: min(600px, calc(70svh - var(--header)));
}

.b2b-home-hero h1 {
  max-width: 820px;
  font-size: clamp(38px, 4.7vw, 60px);
  line-height: 1.08;
}

.b2b-home-hero .lead,
.b2b-product-hero .lead {
  max-width: 760px;
}

.b2b-home-hero .lead {
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.54;
}

.b2b-home-hero .hero-content,
.b2b-home-hero h1,
.b2b-home-hero .lead,
.b2b-home-hero .section-actions,
.b2b-home-hero .section-actions .button,
.b2b-home-hero .hero-proof {
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
}

.b2b-home-hero h1,
.b2b-home-hero .lead {
  text-wrap: auto;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.hero.b2b-home-hero h1 {
  text-wrap: auto;
}

.hero.b2b-home-hero .lead {
  text-wrap: auto;
  overflow-wrap: break-word;
}

.b2b-home-hero .hero-proof {
  margin-top: 26px;
  padding-bottom: 2px;
}

.b2b-actions {
  gap: 12px;
}

.b2b-actions .button {
  white-space: normal;
  text-align: center;
}

.b2b-trust-band {
  background: #f7f9fb;
}

.b2b-home-products {
  background: #fff;
}

.b2b-home-products,
.b2b-service-support,
.b2b-project-fit {
  padding-block: clamp(56px, 5.2vw, 70px);
}

.b2b-process-section {
  padding-block: clamp(60px, 5.6vw, 76px);
}

.b2b-home-products .section-heading,
.b2b-project-fit .section-heading,
.b2b-process-section .section-heading {
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.78fr);
  gap: clamp(22px, 3.6vw, 42px);
  align-items: start;
  margin-bottom: clamp(26px, 3.4vw, 38px);
}

.b2b-home-products .section-heading h2,
.b2b-project-fit .section-heading h2,
.b2b-process-section .section-heading h2,
.b2b-service-intro-row h2 {
  max-width: 760px;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.12;
}

.b2b-home-products .section-intro,
.b2b-project-fit .section-intro,
.b2b-process-section .section-intro {
  max-width: 560px;
  align-self: start;
  padding-top: 2px;
  font-size: 16.5px;
  line-height: 1.62;
}

.b2b-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 28px);
  margin-top: clamp(4px, 1vw, 10px);
}

.b2b-product-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(43, 58, 67, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(22, 34, 43, 0.07);
}

.b2b-product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eef2f5;
}

.b2b-product-card > div {
  display: grid;
  min-height: 238px;
  padding: 22px;
}

.b2b-product-card h3 {
  margin: 8px 0 10px;
  font-size: clamp(21px, 1.55vw, 24px);
  line-height: 1.22;
}

.b2b-product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.b2b-split,
.b2b-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4.2vw, 54px);
  align-items: center;
}

.b2b-split.reverse .b2b-image-card {
  order: -1;
}

.b2b-service-support .b2b-service-container {
  width: min(calc(100% - 48px), 1280px);
}

.b2b-service-intro-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
  gap: clamp(26px, 4vw, 48px);
  align-items: center;
  margin-bottom: clamp(24px, 3.2vw, 36px);
}

.b2b-service-intro-row .section-intro {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.62;
}

.b2b-service-intro-row .b2b-image-card img {
  height: clamp(240px, 26vw, 330px);
}

.b2b-service-support .b2b-step-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-auto-rows: 1fr;
  gap: clamp(20px, 2.4vw, 28px);
  align-items: stretch;
}

.b2b-service-support .b2b-info-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(24px, 2.2vw, 28px);
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.b2b-service-support .b2b-info-card h3 {
  font-size: 24px;
  line-height: 1.26;
  font-weight: 800;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.b2b-service-support .b2b-info-card p {
  max-width: none;
  font-size: clamp(16px, 1.2vw, 17px);
  line-height: 1.68;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.b2b-two-column {
  align-items: start;
}

.b2b-two-column article,
.b2b-info-card,
.b2b-image-card,
.b2b-product-card {
  min-width: 0;
}

.b2b-card-grid,
.b2b-step-grid,
.b2b-quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2.2vw, 22px);
}

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

.b2b-card-grid.card-count-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.b2b-quality-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.b2b-quality-grid.card-count-5 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
}

.b2b-quality-grid.card-count-5 .b2b-info-card {
  grid-column: span 2;
}

.b2b-quality-grid.card-count-5 .b2b-info-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.b2b-quality-grid.card-count-5 .b2b-info-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.b2b-quality-section .section-heading {
  align-items: start;
  margin-bottom: clamp(26px, 3.2vw, 38px);
}

.b2b-quality-section .section-heading h2 {
  max-width: 780px;
}

.b2b-quality-section .section-intro {
  max-width: 620px;
  line-height: 1.62;
}

.b2b-quality-section .b2b-info-card {
  display: flex;
  min-height: clamp(230px, 19vw, 270px);
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(24px, 2.5vw, 32px);
  border-color: rgba(39, 77, 99, 0.14);
  box-shadow: 0 16px 38px rgba(22, 34, 43, 0.055);
}

.b2b-quality-section .b2b-info-card span {
  margin-bottom: clamp(18px, 2vw, 26px);
  color: #7a621f;
}

.b2b-quality-section .b2b-info-card h3 {
  max-width: 560px;
  margin-bottom: 14px;
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.22;
  letter-spacing: 0;
}

.b2b-quality-section .b2b-info-card p {
  max-width: 520px;
  margin-top: auto;
  font-size: 16px;
  line-height: 1.66;
}

.b2b-info-card,
.b2b-two-column article {
  padding: clamp(20px, 2vw, 24px);
  border: 1px solid rgba(43, 58, 67, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(22, 34, 43, 0.06);
}

.b2b-info-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #8a6b2a;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.b2b-info-card h3,
.b2b-two-column h2 {
  margin: 0 0 10px;
}

.b2b-info-card p,
.b2b-two-column li {
  color: var(--muted);
  line-height: 1.58;
}

.b2b-faq-heading {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  margin-bottom: clamp(24px, 3vw, 34px);
}

.b2b-faq-heading h2 {
  max-width: 760px;
  font-size: clamp(28px, 2.7vw, 38px);
  line-height: 1.16;
}

.b2b-faq-heading .section-intro {
  max-width: 720px;
  margin-top: 14px;
  font-size: 16.5px;
  line-height: 1.64;
}

.b2b-faq-helper-card {
  min-width: 0;
  padding: clamp(20px, 2vw, 24px);
  border: 1px solid rgba(43, 58, 67, 0.1);
  border-radius: 8px;
  background: #f7f9fb;
  box-shadow: 0 14px 32px rgba(22, 34, 43, 0.045);
}

.b2b-faq-helper-card h3 {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.28;
}

.b2b-faq-helper-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.b2b-faq-helper-card li {
  color: var(--muted);
  line-height: 1.48;
}

.b2b-two-column ul,
.b2b-options-section ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding-left: 20px;
}

.b2b-image-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(43, 58, 67, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 56px rgba(22, 34, 43, 0.1);
}

.b2b-image-card img {
  width: 100%;
  height: clamp(280px, 32vw, 400px);
  object-fit: cover;
}

.b2b-image-card figcaption {
  padding: 14px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.b2b-product-hero > img {
  opacity: 1;
  filter: brightness(1.04) contrast(1.04) saturate(1.02);
}

.b2b-product-hero {
  min-height: min(520px, calc(68svh - var(--header)));
}

.b2b-product-hero .page-hero-content {
  max-width: 1060px;
  padding-block: clamp(52px, 7vw, 72px);
}

.b2b-product-hero h1 {
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1.06;
}

.b2b-quick-rfq {
  background: #f7f9fb;
}

.b2b-final-cta {
  background: #17232b;
  color: #fff;
}

.b2b-final-cta .cta-band {
  padding-block: 0;
}

.b2b-final-cta p,
.b2b-final-cta .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.b2b-final-cta .button.ghost {
  border-color: rgba(255, 255, 255, 0.52);
  color: #fff;
}

@media (max-width: 1180px) {
  .b2b-product-grid,
  .b2b-step-grid,
  .b2b-quality-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .b2b-card-grid.card-count-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .b2b-quality-grid,
  .b2b-quality-grid.card-count-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .b2b-quality-grid.card-count-5 .b2b-info-card,
  .b2b-quality-grid.card-count-5 .b2b-info-card:nth-child(4),
  .b2b-quality-grid.card-count-5 .b2b-info-card:nth-child(5) {
    grid-column: auto;
  }

  .b2b-quality-grid.card-count-5 .b2b-info-card:last-child {
    grid-column: 1 / -1;
  }

  .b2b-service-support .b2b-step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .b2b-home-products,
  .b2b-service-support,
  .b2b-project-fit {
    padding-block: 58px;
  }

  .b2b-home-products .section-heading,
  .b2b-project-fit .section-heading,
  .b2b-process-section .section-heading {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 30px;
  }

  .b2b-home-products .section-intro,
  .b2b-project-fit .section-intro,
  .b2b-process-section .section-intro {
    max-width: 620px;
    padding-top: 0;
  }

  .b2b-split,
  .b2b-two-column {
    grid-template-columns: 1fr;
  }

  .b2b-service-intro-row {
    grid-template-columns: 1fr;
  }

  .b2b-faq-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .b2b-faq-heading h2 {
    max-width: 680px;
  }

  .b2b-split.reverse .b2b-image-card {
    order: initial;
  }

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

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

@media (max-width: 640px) {
  .b2b-service-support .b2b-service-container {
    width: min(calc(100% - 32px), 1280px);
  }

  .b2b-home-hero,
  .b2b-product-hero {
    min-height: auto;
  }

  .b2b-home-hero .hero-media-grid img {
    object-position: 63% center;
  }

  .b2b-home-hero::before {
    background:
      linear-gradient(90deg, rgba(24, 57, 79, 0.76) 0%, rgba(38, 76, 101, 0.6) 58%, rgba(44, 78, 99, 0.3) 100%),
      linear-gradient(180deg, rgba(24, 57, 79, 0.04) 0%, rgba(24, 57, 79, 0.18) 100%);
  }

  .b2b-home-hero .hero-content,
  .b2b-product-hero .page-hero-content {
    padding-block: 46px 48px;
  }

  .b2b-home-hero .hero-content {
    width: min(calc(100% - 32px), 880px);
  }

  .b2b-home-hero h1 {
    max-width: min(100%, 328px);
    font-size: clamp(29px, 7.4vw, 31px);
    line-height: 1.14;
    text-wrap: auto;
  }

  .hero.b2b-home-hero h1 {
    max-width: min(100%, 328px);
    font-size: clamp(29px, 7.4vw, 31px);
    line-height: 1.14;
    text-wrap: auto;
  }

  .hero.b2b-home-hero .lead {
    max-width: min(100%, 336px);
    font-size: 16px;
    line-height: 1.58;
    text-wrap: auto;
    overflow-wrap: break-word;
  }

  .b2b-product-hero h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .b2b-home-hero .lead,
  .b2b-product-hero .lead {
    font-size: 17px;
    line-height: 1.58;
  }

  .b2b-home-hero .section-actions .button {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    padding-inline: 14px;
  }

  .b2b-home-hero .hero-proof {
    margin-top: 22px;
  }

  .b2b-product-grid,
  .b2b-card-grid,
  .b2b-card-grid.card-count-4,
  .b2b-step-grid,
  .b2b-quality-grid,
  .b2b-quality-grid.card-count-5 {
    grid-template-columns: 1fr;
  }

  .b2b-quality-grid.card-count-5 .b2b-info-card:last-child {
    grid-column: auto;
  }

  .b2b-quality-section .b2b-info-card {
    min-height: 0;
    padding: 24px;
  }

  .b2b-service-support .b2b-step-grid {
    grid-template-columns: 1fr;
  }

  .b2b-service-support .b2b-info-card {
    min-height: 0;
    padding: 26px;
  }

  .b2b-product-card > div {
    min-height: 0;
    padding: 22px;
  }

  .b2b-image-card img {
    height: 270px;
  }
}


/* SSW CNC RFQ page V1 */
.cnc-v1-hero { min-height: auto; padding: clamp(72px, 9vw, 118px) 0; background: radial-gradient(circle at 85% 18%, rgba(224, 112, 69, .18), transparent 34%), linear-gradient(135deg, #0c2733 0%, #163d4a 58%, #20515d 100%); color: #fff; }
.cnc-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); gap: clamp(36px, 6vw, 76px); align-items: center; }
.cnc-hero-copy { max-width: 790px; }
.cnc-v1-hero h1 { max-width: 820px; margin: 10px 0 18px; font-size: clamp(2.55rem, 5.8vw, 5.4rem); line-height: .98; letter-spacing: -.045em; color: #fff; }
.cnc-v1-hero .lead { max-width: 760px; color: rgba(255,255,255,.83); font-size: clamp(1.08rem, 1.8vw, 1.32rem); line-height: 1.65; }
.cnc-hero-actions { margin-top: 28px; }
.cnc-hero-actions .ghost { border-color: rgba(255,255,255,.6); color: #fff; }
.cnc-contact-actions { display: flex; flex-wrap: wrap; gap: 11px; align-items: stretch; margin-top: 24px; }
.cnc-contact-actions .button, .cnc-contact-link { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; font-weight: 800; text-decoration: none; }
.cnc-contact-link { padding: 10px 15px; border: 1px solid rgba(31,65,80,.2); background: #fff; color: #244a58; font-size: .88rem; }
.cnc-contact-link.contact-email-action { display: block; align-content: center; white-space: normal; overflow-wrap: anywhere; line-height: 1.4; font-family: inherit; }
.cnc-v1-hero .cnc-contact-link { border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.08); color: #fff; }
.cnc-drawing-note { max-width: 720px; margin: 22px 0 0; color: rgba(255,255,255,.76); font-size: .94rem; }
.cnc-drawing-note a { color: #fff; font-weight: 800; }
.cnc-hero-panel { padding: clamp(26px, 4vw, 38px); border: 1px solid rgba(255,255,255,.2); border-radius: 22px; background: rgba(5, 27, 35, .42); box-shadow: 0 26px 70px rgba(0,0,0,.22); backdrop-filter: blur(12px); }
.cnc-hero-panel > span, .cnc-example-group > div > span { display: inline-flex; color: #f2a581; font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.cnc-hero-panel ul { display: grid; gap: 14px; margin: 22px 0; padding: 0; list-style: none; }
.cnc-hero-panel li { position: relative; padding-left: 24px; color: rgba(255,255,255,.9); line-height: 1.5; }
.cnc-hero-panel li::before { content: ""; position: absolute; left: 0; top: .55em; width: 9px; height: 9px; border-radius: 50%; background: #e07045; box-shadow: 0 0 0 5px rgba(224,112,69,.16); }
.cnc-hero-panel p { margin-bottom: 0; color: rgba(255,255,255,.67); font-size: .9rem; line-height: 1.6; }
.cnc-proof-strip { padding: 18px 0; border-bottom: 1px solid rgba(31,65,80,.12); background: #f4f7f7; }
.cnc-proof-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.cnc-proof-grid span { color: #254653; font-size: .88rem; font-weight: 800; text-align: center; }
.cnc-heading { align-items: end; }
.cnc-card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.cnc-info-card, .cnc-spec-panel { padding: 24px; border: 1px solid rgba(31,65,80,.12); border-radius: 17px; background: #fff; box-shadow: 0 14px 38px rgba(24,57,70,.06); }
.cnc-info-card > span { color: #d4633d; font-size: .78rem; font-weight: 900; letter-spacing: .12em; }
.cnc-info-card h3, .cnc-spec-panel h3 { margin: 12px 0 9px; font-size: 1.25rem; }
.cnc-info-card p, .cnc-spec-panel p { margin-bottom: 0; color: #526974; line-height: 1.6; }
.cnc-spec-grid { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: 22px; margin-top: 24px; }
.cnc-spec-panel ul, .cnc-three-column ul { display: grid; gap: 9px; margin: 16px 0 0; padding-left: 20px; }
.cnc-tolerance-panel { color: #fff; background: linear-gradient(135deg, #123743, #205564); }
.cnc-tolerance-panel h3, .cnc-tolerance-panel p { color: inherit; }
.cnc-tolerance-panel .eyebrow { color: #f1a47e; }
.cnc-tolerance-panel strong { color: #fff; font-size: 1.12em; }
.cnc-tolerance-panel .cnc-caveat { color: rgba(255,255,255,.72); font-size: .92rem; }
.cnc-thermal-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.cnc-media-card { display: flex; flex-direction: column; min-width: 0; margin: 0; overflow: hidden; border: 1px solid rgba(31,65,80,.13); border-radius: 18px; background: #fff; box-shadow: 0 16px 42px rgba(24,57,70,.08); }
.cnc-media-card picture { display: block; flex: 1; min-height: 0; }
.cnc-media-card img, .cnc-media-card video { display: block; width: 100%; height: 100%; max-height: 560px; object-fit: cover; background: #102d38; }
.cnc-thermal-primary img { object-position: center; }
.cnc-video-card video { aspect-ratio: 9 / 16; object-fit: cover; }
.cnc-media-card figcaption { padding: 14px 16px 16px; color: #405963; font-size: .92rem; line-height: 1.5; }
.cnc-thermal-section .section-actions { margin-top: 26px; justify-content: center; }
.cnc-example-groups { display: grid; gap: 24px; }
.cnc-example-group { display: grid; grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr); gap: clamp(28px, 5vw, 58px); align-items: center; padding: clamp(24px, 4vw, 40px); border: 1px solid rgba(31,65,80,.12); border-radius: 22px; background: #fff; }
.cnc-example-group.reverse > div:first-child { order: 2; }
.cnc-example-group h3 { margin: 8px 0 12px; font-size: clamp(1.45rem, 2.4vw, 2.1rem); }
.cnc-example-group p { color: #526974; line-height: 1.65; }
.cnc-example-media { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; min-width: 0; }
.cnc-example-media.single { grid-template-columns: 1fr; max-width: 620px; }
.cnc-example-media img, .cnc-example-media video { display: block; width: 100%; height: 390px; object-fit: cover; border-radius: 15px; background: #102d38; }
.cnc-example-media video { max-width: 360px; height: auto; aspect-ratio: 9 / 16; justify-self: center; }
.cnc-three-column { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.cnc-three-column article { padding: 26px; border-radius: 18px; background: #fff; box-shadow: 0 14px 38px rgba(24,57,70,.06); }
.cnc-three-column h2 { font-size: 1.45rem; }
.cnc-three-column p { color: #526974; line-height: 1.6; }
.cnc-checklist-section { background: #eef4f4; }
.cnc-checklist { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; margin: 24px 0 0; padding: 0; list-style: none; }
.cnc-checklist li { display: grid; gap: 6px; padding: 18px; border: 1px solid rgba(31,65,80,.12); border-radius: 16px; background: #fff; box-shadow: 0 10px 28px rgba(24,57,70,.05); }
.cnc-checklist strong { color: #173f4c; }
.cnc-checklist span { color: #5b7079; font-size: .91rem; line-height: 1.55; }
.cnc-checklist-section .cnc-contact-actions { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(31,65,80,.13); }
.cnc-process-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin: 0; padding: 0; list-style: none; counter-reset: none; }
.cnc-process-list li { min-height: 126px; padding: 20px; border: 1px solid rgba(31,65,80,.13); border-radius: 15px; background: #fff; color: #2c4b57; font-weight: 800; line-height: 1.45; }
.cnc-process-list span { display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; margin-bottom: 16px; border-radius: 50%; background: #e07045; color: #fff; font-size: .8rem; }
.cnc-faq-list { max-width: 980px; margin-inline: auto; }
.cnc-rfq-layout { display: grid; grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr); gap: clamp(32px, 5vw, 68px); align-items: start; }
.cnc-rfq-aside { position: sticky; top: calc(var(--header) + 24px); }
.cnc-rfq-aside h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
.cnc-rfq-aside p { color: #526974; line-height: 1.65; }
.cnc-rfq-aside .cnc-contact-actions { display: grid; }
.cnc-rfq-aside .cnc-contact-actions > * { width: 100%; text-align: center; }
.cnc-file-formats { display: flex; flex-wrap: wrap; gap: 9px; margin: 24px 0; }
.cnc-file-formats strong { width: 100%; color: #284b58; }
.cnc-file-formats span { padding: 7px 10px; border-radius: 999px; background: #eaf1f2; color: #31515d; font-size: .82rem; font-weight: 800; }
.cnc-confidential-note { padding: 15px 17px; border-left: 3px solid #e07045; background: #f7f3f0; }
.cnc-rfq-section .rfq-form { padding: clamp(24px, 4vw, 38px); border: 1px solid rgba(31,65,80,.14); border-radius: 22px; background: #fff; box-shadow: 0 20px 58px rgba(24,57,70,.09); }
.cnc-rfq-section .rfq-form .form-submit { margin-top: 4px; }
.cnc-related-links { display: flex; flex-wrap: wrap; gap: 10px; }
.cnc-related-links a { padding: 10px 13px; border: 1px solid rgba(31,65,80,.13); border-radius: 999px; background: #fff; color: #284b58; font-weight: 800; text-decoration: none; }
.cnc-backlink { margin: 18px 0 0; padding: 14px 16px; border-left: 3px solid #e07045; background: #f4f7f7; }
.cnc-backlink a { color: #244d5b; font-weight: 800; }
.product-detail-page-cnc-machining-china .sticky-actions { right: max(104px, calc(env(safe-area-inset-right) + 104px)); }
@media (max-width: 980px) {
  .cnc-hero-grid, .cnc-spec-grid, .cnc-example-group, .cnc-rfq-layout { grid-template-columns: 1fr; }
  .cnc-hero-panel { max-width: 760px; }
  .cnc-card-grid, .cnc-proof-grid, .cnc-process-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cnc-three-column { grid-template-columns: 1fr; }
  .cnc-example-group.reverse > div:first-child { order: 0; }
  .cnc-rfq-aside { position: static; }
}
@media (max-width: 760px) {
  .cnc-v1-hero { padding: 58px 0 48px; }
  .cnc-v1-hero h1 { font-size: clamp(2.35rem, 12vw, 3.45rem); }
  .cnc-hero-actions { display: grid; grid-template-columns: 1fr; width: 100%; }
  .cnc-hero-actions .button { width: 100%; justify-content: center; }
  .cnc-contact-actions { display: grid; width: 100%; }
  .cnc-contact-actions > * { width: 100%; padding-inline: 14px; text-align: center; }
  .cnc-proof-grid, .cnc-card-grid, .cnc-thermal-grid, .cnc-process-list { grid-template-columns: 1fr; }
  .cnc-checklist { grid-template-columns: 1fr; }
  .cnc-proof-grid span { padding: 4px 0; text-align: left; }
  .cnc-example-group { padding: 22px; }
  .cnc-example-media { grid-template-columns: 1fr; }
  .cnc-example-media img { height: 340px; }
  .cnc-media-card img, .cnc-media-card video { max-height: none; }
  .cnc-rfq-section .rfq-form { padding: 22px 18px; }
  .product-detail-page-cnc-machining-china .sticky-actions {
    right: 14px;
    bottom: max(88px, calc(env(safe-area-inset-bottom) + 78px));
  }
}


/* SSW containerized fuel station approved media */
.fuel-section-heading { align-items: end; }
.fuel-media-card { margin: 0; overflow: hidden; border: 1px solid rgba(31, 65, 80, .14); border-radius: 18px; background: #fff; box-shadow: 0 16px 40px rgba(18, 47, 61, .08); }
.fuel-media-card img, .fuel-media-card video, .fuel-video-wrap video { display: block; width: 100%; height: 100%; object-fit: cover; background: #102c39; }
.fuel-media-card figcaption { padding: 14px 16px 16px; color: #405763; font-size: .94rem; line-height: 1.55; }
.fuel-feature-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(300px, .98fr); gap: clamp(24px, 4vw, 54px); align-items: center; }
.fuel-media-card-primary img { aspect-ratio: 4 / 5; object-position: center 55%; }
.fuel-configuration-copy { padding: clamp(6px, 2vw, 22px) 0; }
.fuel-kicker, .fuel-fact-label { display: inline-flex; margin: 0 0 12px; color: #b14a2f; font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.fuel-spec-list { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.fuel-spec-list li { padding: 14px 16px; border-left: 3px solid #d86d46; border-radius: 0 12px 12px 0; background: #f5f8f8; color: #344d59; line-height: 1.55; }
.fuel-accuracy-note { margin: 20px 0 0; padding: 16px 18px; border-radius: 13px; background: #eaf2f3; color: #284955; font-size: .94rem; line-height: 1.6; }
.fuel-detail-grid, .fuel-dispenser-grid, .fuel-manufacturing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-top: 28px; }
.fuel-detail-grid .fuel-media-card img, .fuel-manufacturing-grid .fuel-media-card:not(.fuel-assembly-card) img { aspect-ratio: 16 / 9; }
.fuel-video-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: clamp(28px, 4vw, 56px); align-items: center; }
.fuel-video-wrap { overflow: hidden; border-radius: 20px; background: #102c39; box-shadow: 0 20px 50px rgba(18, 47, 61, .16); }
.fuel-video-wrap video { aspect-ratio: 16 / 9; }
.fuel-project-copy h2 { margin-top: 8px; }
.fuel-project-cta { display: flex; justify-content: space-between; gap: 24px; align-items: center; margin-top: 30px; padding: 24px 28px; border: 1px solid rgba(31, 65, 80, .14); border-radius: 16px; background: #fff; }
.fuel-project-cta > p { max-width: 720px; margin: 0; color: #284955; font-weight: 700; line-height: 1.55; }
.fuel-example-grid { display: grid; grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr); gap: 28px; align-items: stretch; }
.fuel-exterior-card img { aspect-ratio: 1 / 1; object-fit: contain; background: #fff; }
.fuel-example-facts { display: grid; gap: 16px; }
.fuel-example-facts .info-panel { padding: 22px; }
.fuel-example-facts h3 { margin: 0 0 8px; font-size: 1.2rem; }
.fuel-example-facts p { margin: 0; }
.fuel-dispenser-grid { align-items: stretch; max-width: 980px; margin-inline: auto; }
.fuel-dispenser-grid > .fuel-media-card:first-child img { aspect-ratio: 1 / 1; object-fit: contain; background: #fff; }
.fuel-testing-card { display: grid; grid-template-columns: minmax(220px, .62fr) minmax(180px, .38fr); align-items: stretch; }
.fuel-testing-card video { aspect-ratio: 16 / 25; max-height: 590px; object-fit: cover; }
.fuel-testing-card figcaption { display: flex; align-items: center; font-size: 1rem; }
.fuel-manufacturing-grid { grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr); align-items: stretch; }
.fuel-assembly-card img { aspect-ratio: 509 / 640; }
.fuel-options-section .strong-panel .button { margin-top: 8px; }
@media (max-width: 900px) {
  .fuel-feature-grid, .fuel-video-grid, .fuel-example-grid { grid-template-columns: 1fr; }
  .fuel-media-card-primary { max-width: 680px; margin-inline: auto; }
  .fuel-project-cta { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 680px) {
  .fuel-detail-grid, .fuel-dispenser-grid, .fuel-manufacturing-grid { grid-template-columns: 1fr; }
  .fuel-testing-card { grid-template-columns: 1fr; }
  .fuel-testing-card video { max-height: none; }
  .fuel-project-cta { padding: 20px; }
  .fuel-project-cta .section-actions { width: 100%; }
  .fuel-project-cta .button { width: 100%; justify-content: center; }
}



/* Header, navigation, and footer layout refinements. */
.site-header {
  height: var(--header);
  min-height: var(--header);
}

.nav-wrap {
  display: grid;
  grid-template-columns: minmax(210px, max-content) minmax(0, 1fr);
  height: 100%;
  min-height: 0;
  gap: clamp(16px, 2.2vw, 30px);
}

.nav-wrap > .brand {
  min-width: 0;
  font-size: 18px;
}

.brand span:not(.brand-mark) {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.translated-view .nav-wrap {
  grid-template-columns: minmax(160px, max-content) minmax(0, 1fr);
  gap: clamp(12px, 2vw, 24px);
}

.translated-view .site-nav {
  column-gap: 14px;
}

.translated-view .nav-main,
.translated-view .nav-actions {
  flex-wrap: wrap;
  gap: 8px 12px;
}

.translated-view .translate-entry {
  display: none !important;
}

.translated-view .nav-cta {
  padding-inline: 14px;
  white-space: nowrap;
}

.site-nav {
  display: grid;
  grid-template-columns: auto auto;
  min-width: 0;
  align-items: center;
  justify-content: end;
  column-gap: clamp(22px, 2.4vw, 30px);
  font-size: 14px;
}

.nav-main,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-main {
  min-width: 0;
  justify-content: flex-end;
  gap: clamp(20px, 2.1vw, 29px);
  flex-wrap: nowrap;
}

.nav-actions {
  flex: 0 0 auto;
  gap: clamp(10px, 1.2vw, 14px);
  justify-content: flex-end;
}

@media (min-width: 1181px) {
  body:not(.translated-view) .site-nav {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: stretch;
    column-gap: clamp(18px, 2vw, 26px);
  }

  body:not(.translated-view) .nav-main {
    justify-content: center;
    gap: clamp(24px, 2.3vw, 32px);
  }
}

.nav-link,
.nav-dropdown > summary,
.site-nav a:not(.nav-cta):not(.dropdown-link) {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 9px 4px;
  border: 1px solid transparent;
  border-radius: 10px;
  line-height: 1.15;
  white-space: nowrap;
}

.site-nav a:not(.nav-cta):not(.dropdown-link) {
  border-bottom: 1px solid transparent;
}

.nav-link:hover,
.nav-link[aria-current="page"],
.nav-dropdown[data-active="true"] > summary,
.nav-dropdown > summary:hover,
.dropdown-link[aria-current="page"] {
  color: var(--red-dark);
  border-color: rgba(189, 73, 53, 0.18);
  background: rgba(189, 73, 53, 0.07);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown > summary {
  cursor: pointer;
  list-style: none;
  font-weight: 650;
}

.nav-dropdown > summary::marker {
  content: "";
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-caret {
  width: 7px;
  height: 7px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.dropdown-menu {
  position: absolute;
  z-index: 80;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  display: none;
  grid-template-columns: 1fr;
  padding: 8px;
  border: 1px solid rgba(216, 220, 215, 0.95);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(23, 26, 31, 0.14);
}

.products-menu {
  min-width: 248px;
}

.contacts-menu {
  min-width: 292px;
}

.nav-dropdown[open] .dropdown-menu,
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: grid;
  gap: 2px;
}

.dropdown-link {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  min-height: 40px;
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.dropdown-link:hover {
  color: var(--red-dark);
  background: rgba(23, 26, 31, 0.055);
}

.site-nav .contacts-menu .contact-link,
.site-nav a.contact-link:not(.nav-cta),
.site-nav button.contact-link {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
  justify-content: stretch;
  justify-items: start;
  min-height: 52px;
  padding: 12px 16px;
  text-align: left;
}

.contacts-menu .contact-dropdown-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  justify-self: start;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f0f2ef;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.contacts-menu .dropdown-link:hover .contact-dropdown-icon {
  background: rgba(189, 73, 53, 0.12);
  color: var(--red-dark);
}

.contacts-menu .contact-dropdown-content {
  display: flex;
  min-width: 0;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-self: start;
  gap: 2px;
  line-height: 1.25;
}

.contacts-menu .contact-dropdown-label {
  font-weight: 700;
}

.contacts-menu .contact-detail {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.25;
}

.contact-copy-toast {
  position: fixed;
  z-index: 120;
  top: calc(var(--header) + 14px);
  right: max(18px, calc((100vw - 1180px) / 2));
  max-width: min(360px, calc(100vw - 36px));
  padding: 10px 14px;
  border: 1px solid rgba(216, 220, 215, 0.95);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(23, 26, 31, 0.14);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.nav-cta {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 11px;
  font-size: 14px;
  white-space: nowrap;
}

.nav-cta:hover {
  box-shadow: 0 10px 22px rgba(189, 73, 53, 0.2);
}

.menu-button {
  position: relative;
  color: var(--ink);
}

.menu-button::before,
.menu-button::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.menu-button::before {
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.menu-button::after {
  opacity: 0;
}

.menu-button[aria-expanded="true"]::before {
  box-shadow: none;
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-button[aria-expanded="true"]::after {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-button:has(svg)::before,
.menu-button:has(svg)::after {
  display: none;
}

.translate-entry {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 14px;
  border: 1px solid rgba(43, 58, 67, 0.22);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.translate-entry:hover {
  border-color: rgba(39, 77, 99, 0.42);
  background: #eef4f7;
  color: #1f3f52;
}

.translate-page .section {
  padding-block: 72px;
}

.translate-page .section-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.translate-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.translate-card {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(43, 58, 67, 0.14);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(22, 34, 43, 0.07);
}

.translate-card:hover {
  transform: translateY(-2px);
  border-color: rgba(39, 77, 99, 0.28);
  background: #f7fafb;
}

.translate-card-flag {
  font-size: 24px;
  line-height: 1;
}

.language-flag {
  flex: 0 0 auto;
  width: 23px;
  height: 16px;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(22, 34, 43, 0.16);
}

.language-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-footer {
  background: #111820;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  grid-template-columns:
    minmax(260px, 1.18fr)
    minmax(160px, 0.72fr)
    minmax(145px, 0.68fr)
    minmax(260px, 1.08fr);
  gap: clamp(26px, 3vw, 42px);
  align-items: start;
}

.site-footer .brand {
  line-height: 1.15;
}

.footer-brand p {
  max-width: 420px;
  line-height: 1.55;
}

.footer-group h3 {
  margin-bottom: 12px;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-group a {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.35;
}

.footer-contact-group h3 {
  color: #fff;
  letter-spacing: 0.02em;
}

.site-footer .contact-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.site-footer .contact-item {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
  justify-items: start;
  width: 100%;
  min-width: 0;
  min-height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: 1.35;
  text-align: left;
  text-decoration: none;
}

.site-footer .contact-item:hover {
  color: rgba(255, 255, 255, 0.92);
}

.site-footer button.contact-item,
.rfq-aside .contact-email-action {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: copy;
}

.site-footer .contact-icon {
  display: inline-flex;
  width: 32px;
  min-width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  align-self: center;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  font-weight: 850;
  line-height: 1;
}

.site-footer .contact-icon svg {
  width: 19px;
  height: 19px;
  display: block;
}

.site-footer .contact-icon-email {
  color: rgba(255, 255, 255, 0.9);
}

.site-footer .contact-icon-whatsapp {
  color: #25d366;
}

.site-footer .contact-icon-linkedin {
  color: #0a66c2;
}

.site-footer .contact-icon-facebook {
  color: #1877f2;
}

.site-footer .contact-text {
  min-width: 0;
  font-weight: 700;
}

.site-footer .contact-email-action .contact-text {
  word-break: break-word;
}

.site-footer .contact-email-action {
  cursor: copy;
}

.site-footer .contact-email-action:hover .contact-text,
.site-footer .contact-email-action:focus-visible .contact-text {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer .footer-group > button.contact-email-action:not(.contact-item) {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
  justify-items: start;
  width: 100%;
  min-height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: 1.35;
  text-align: left;
  cursor: copy;
}

.site-footer .footer-group > button.contact-email-action:not(.contact-item)::before {
  display: inline-flex;
  width: 32px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  content: "@";
}

.site-footer .footer-group > button.contact-email-action:not(.contact-item):hover,
.site-footer .footer-group > button.contact-email-action:not(.contact-item):focus-visible {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.12);
  align-items: flex-start;
  line-height: 1.45;
}

.footer-bottom span:last-child {
  max-width: 640px;
  text-align: right;
}

@media (max-width: 1180px) {
  .nav-wrap {
    display: flex;
    min-height: var(--header);
    gap: 16px;
  }

  .nav-wrap > .brand {
    flex: 1 1 auto;
    margin-right: auto;
  }

  .site-nav {
    position: fixed;
    z-index: 60;
    top: var(--header);
    right: 0;
    left: 0;
    display: none;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 14px;
    max-height: calc(100svh - var(--header));
    overflow-y: auto;
    padding: 16px 20px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .nav-main,
  .nav-actions {
    display: grid;
    width: 100%;
    gap: 6px;
  }

  .nav-main {
    justify-content: stretch;
  }

  .nav-dropdown {
    display: grid;
  }

  .nav-link,
  .nav-dropdown > summary,
  .site-nav a:not(.nav-cta):not(.dropdown-link) {
    width: 100%;
    justify-content: flex-start;
    min-height: 44px;
    padding: 12px;
    border-radius: 9px;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    display: none;
    min-width: 0;
    margin: 3px 0 8px;
    padding: 6px;
    border-radius: 10px;
    background: #f7f8f6;
    box-shadow: none;
  }

  .nav-dropdown[open] .dropdown-menu {
    display: grid;
    gap: 2px;
  }

  .dropdown-link {
    min-height: 40px;
    padding: 10px 12px 10px 22px;
  }

  .site-nav .contacts-menu .contact-link,
  .site-nav a.contact-link:not(.nav-cta),
  .site-nav button.contact-link {
    grid-template-columns: 36px minmax(0, 1fr);
    min-height: 52px;
    padding: 12px 14px;
  }

  .contact-copy-toast {
    top: calc(var(--header) + 10px);
    right: 14px;
    left: 14px;
    max-width: none;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }

  .translate-entry {
    width: 100%;
    min-height: 44px;
  }

  .menu-button {
    display: inline-flex;
  }
}

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

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

@media (max-width: 680px) {
  .nav-wrap {
    gap: 12px;
  }

  .brand {
    max-width: calc(100% - 64px);
  }

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

  .translate-card {
    min-height: 76px;
    padding: 18px;
  }

  .site-footer {
    padding-block: 46px 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand p {
    max-width: none;
  }

  .footer-bottom span:last-child {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .translate-grid {
    grid-template-columns: 1fr;
  }
}



/* Homepage visual and responsive layout refinements. */
html,
body {
  overflow-x: hidden;
}

body {
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

.container {
  width: min(1180px, calc(100% - 48px));
}

h1,
h2,
h3,
p,
li,
a,
button,
summary {
  overflow-wrap: normal;
  word-break: normal;
}

h1 {
  max-width: 980px;
  margin-block: 0 20px;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-block: 0 16px;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.55;
}

.section-intro,
.split-copy > p,
.why-copy > p,
.service-card p,
.case-card p,
.process-step p,
.trust-item span,
.entity-card p {
  font-size: 16px;
  line-height: 1.62;
}

.eyebrow {
  margin-block: 0 14px;
  font-size: 13px;
  line-height: 1.25;
  letter-spacing: 0.08em;
}

.section {
  padding-block: clamp(54px, 6vw, 80px);
}

.section-heading {
  align-items: start;
  gap: clamp(22px, 3.6vw, 42px);
  margin-bottom: clamp(24px, 3.4vw, 36px);
}

.section-heading > div {
  min-width: min(100%, 520px);
}

.section-heading h2 {
  max-width: 720px;
  font-size: clamp(28px, 3.1vw, 40px);
  line-height: 1.14;
}

.section-intro {
  max-width: 560px;
  line-height: 1.62;
}

.hero {
  position: relative;
  min-height: clamp(620px, 70vh, 720px);
  display: grid;
  align-items: center;
  padding-block: calc(var(--header) + 50px) 68px;
  overflow: hidden;
  background: #1b2630;
  color: #fff;
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 28, 37, 0.74) 0%, rgba(18, 28, 37, 0.58) 42%, rgba(18, 28, 37, 0.22) 100%),
    linear-gradient(180deg, rgba(18, 28, 37, 0.1) 0%, rgba(18, 28, 37, 0.38) 100%);
  content: "";
}

.hero-media-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(42%, 1.35fr) minmax(24%, 0.8fr) minmax(24%, 0.8fr);
  gap: 0;
}

.hero-media-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.02) saturate(1.04) contrast(1.05);
}

.hero-media-grid img:first-child {
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 940px;
  padding: 0;
}

.hero .eyebrow,
.hero .lead,
.hero-proof {
  color: rgba(255, 255, 255, 0.86);
}

.hero h1 {
  color: #fff;
  max-width: 960px;
  font-size: clamp(56px, 4.6vw, 68px);
  line-height: 1.06;
  text-shadow: 0 2px 18px rgba(10, 15, 20, 0.36);
  text-wrap: balance;
}

.hero .lead {
  max-width: 760px;
  text-shadow: 0 1px 12px rgba(10, 15, 20, 0.3);
}

.page-hero h1,
.text-hero h1,
.landing-hero h1 {
  max-width: 980px;
  font-size: clamp(40px, 4.2vw, 62px);
  line-height: 1.1;
  text-wrap: balance;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.2;
}

.site-nav .nav-cta {
  min-height: 44px;
  padding: 0 15px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.2;
}

.button:not(.ghost):not(.secondary),
.nav-cta {
  border-color: #274d63;
  background: #274d63;
  color: #fff;
}

.button:not(.ghost):not(.secondary):hover,
.nav-cta:hover {
  border-color: #1f3f52;
  background: #1f3f52;
  box-shadow: 0 10px 22px rgba(31, 63, 82, 0.18);
}

.button.secondary,
.button.ghost,
.hero .button.ghost {
  border-color: rgba(216, 220, 215, 0.92);
  background: #fff;
  color: var(--ink);
}

.hero .button.secondary,
.hero .button.ghost {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.92);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  max-width: 760px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof li::before {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--red);
  content: "";
}

.trust-band {
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-grid,
.service-grid,
.process-grid,
.trust-card-grid {
  gap: clamp(20px, 3vw, 32px);
}

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

.trust-item {
  min-width: 0;
}

.trust-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

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

.service-card,
.case-card,
.process-step,
.benefit-card,
.entity-card,
.answer-box,
.faq-list details {
  border-radius: 8px;
}

.service-card {
  min-width: 0;
  overflow: hidden;
}

.service-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef1ed;
}

.service-card-media img,
.split-media img,
.why-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split,
.two-column,
.about-split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(42px, 5vw, 68px);
  align-items: center;
}

.split-copy,
.two-column > div,
.about-copy {
  min-width: 0;
}

.split-copy {
  max-width: 640px;
}

.split-copy > p:not(.eyebrow),
.two-column .section-intro,
.about-copy p:not(.eyebrow) {
  max-width: 640px;
}

.split-media,
.about-media {
  width: 100%;
  max-width: 620px;
  justify-self: center;
}

.split-media img,
.about-media img {
  aspect-ratio: 4 / 3;
  max-height: 460px;
  object-fit: cover;
  object-position: center;
}

.split-media.about-photo img {
  max-height: 440px;
}

.liquid-entry .split-media,
.product-detail-page .split-media {
  max-width: 560px;
}

.liquid-entry .split-media img,
.product-detail-page .split-media img {
  aspect-ratio: 16 / 10;
  max-height: 390px;
}

.split-copy .check-list,
.two-column .check-list {
  margin-top: 20px;
}

.contact-email-action {
  cursor: copy;
}

.service-card-body {
  padding: 22px;
}

.tag {
  font-size: 12px;
  letter-spacing: 0.06em;
}

.home-products {
  padding-block: clamp(90px, 8vw, 110px);
  background: #fff;
}

.home-products .container {
  width: min(1220px, calc(100% - 64px));
}

.home-products-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.82fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: end;
  margin-bottom: clamp(48px, 5vw, 64px);
}

.home-products-heading > div,
.home-products-heading > p {
  min-width: 0;
}

.home-products-heading h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.14;
  text-wrap: balance;
}

.home-products-heading > p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 20px);
  line-height: 1.58;
}

.home-products-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 34px);
}

.home-product-card {
  grid-column: span 2;
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(216, 220, 215, 0.95);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(23, 26, 31, 0.07);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.home-product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(189, 73, 53, 0.32);
  box-shadow: 0 20px 44px rgba(23, 26, 31, 0.1);
}

.home-product-card .service-card-media {
  aspect-ratio: 16 / 10;
  min-height: 220px;
  max-height: 260px;
  background: #edf0ec;
}

.home-product-card .service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-product-card .service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(24px, 2.4vw, 28px);
}

.home-product-card .tag {
  margin-bottom: 12px;
  color: var(--green);
  font-weight: 850;
  text-transform: uppercase;
}

.home-product-card h3 {
  margin: 0 0 12px;
  font-size: clamp(22px, 2vw, 26px);
  line-height: 1.18;
}

.home-product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.58;
}

.home-product-card .text-link {
  margin-top: auto;
  padding-top: 22px;
  font-size: 15px;
  font-weight: 850;
}

.home-products-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: clamp(34px, 4vw, 48px);
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f7f8f6;
}

.home-products-cta p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.home-products-cta .section-actions {
  margin: 0;
}

.why-sally {
  padding-block: clamp(82px, 7vw, 104px);
  background: #f5f6f3;
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  grid-template-areas:
    "copy cards"
    "media cards";
  gap: clamp(26px, 4vw, 48px);
  align-items: start;
}

.why-copy {
  grid-area: copy;
  max-width: 620px;
}

.why-copy h2 {
  max-width: 680px;
  font-size: clamp(42px, 3.8vw, 56px);
  line-height: 1.1;
  text-wrap: balance;
}

.why-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

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

.benefit-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(23, 26, 31, 0.06);
}

.benefit-card h3 {
  margin-block: 0 10px;
  font-size: 20px;
  line-height: 1.22;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
}

.why-media {
  grid-area: media;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #e9ece7;
  box-shadow: 0 16px 38px rgba(23, 26, 31, 0.08);
}

.why-media img {
  aspect-ratio: 16 / 10;
  min-height: 260px;
  object-position: center;
}

.dark h2,
.dark h3,
.final-cta h2 {
  color: inherit;
}

.how-work-home {
  padding-block: clamp(88px, 7vw, 108px);
  background:
    radial-gradient(circle at 88% 12%, rgba(47, 111, 94, 0.22), transparent 34%),
    linear-gradient(135deg, #1a2530 0%, #202832 52%, #182028 100%);
}

.how-work-home .container {
  display: grid;
  gap: clamp(48px, 5vw, 62px);
}

.how-work-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.95fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: end;
}

.how-work-title,
.how-work-summary {
  min-width: 0;
}

.how-work-home .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.how-work-home h2 {
  max-width: 680px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 4.1vw, 60px);
  line-height: 1.1;
  text-wrap: balance;
}

.how-work-summary p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.62;
}

.how-work-actions {
  margin-top: 26px;
}

.how-work-home .button.ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
  color: #fff;
}

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

.home-process-grid .process-step {
  min-width: 0;
  height: 100%;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.095);
  box-shadow: 0 16px 34px rgba(8, 12, 16, 0.14);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.home-process-grid .process-step:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.13);
}

.home-process-grid .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(189, 73, 53, 0.95);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.home-process-grid h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 20px;
  line-height: 1.22;
}

.home-process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.55;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta-band p {
  max-width: 720px;
}

.project-examples-home {
  background:
    linear-gradient(180deg, #fff 0%, #fff 62%, #f6f7f4 62%, #f6f7f4 100%);
}

.project-examples-home .section-heading h2 {
  max-width: 620px;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.14;
  text-wrap: balance;
}

.project-example-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 30px);
}

.project-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(216, 220, 215, 0.95);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(23, 26, 31, 0.06);
}

.case-label {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0 0 18px;
  font-size: clamp(22px, 2vw, 25px);
  line-height: 1.18;
}

.project-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.project-card dt {
  margin-top: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.project-card dd {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.home-final-cta {
  padding-block: clamp(58px, 6vw, 78px);
  background: #fff;
}

.home-final-cta .cta-band {
  width: min(1180px, calc(100% - 48px));
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(68, 118, 143, 0.26) 0%, rgba(68, 118, 143, 0) 44%),
    #14212b;
  color: #fff;
  box-shadow: 0 18px 42px rgba(23, 26, 31, 0.13);
}

.home-final-cta .eyebrow,
.home-final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.home-final-cta h2 {
  max-width: 760px;
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.15;
  text-wrap: balance;
}

.home-final-cta .button.ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
  color: #fff;
}

.page-hero {
  min-height: clamp(430px, 56vh, 560px);
}

.landing-hero > img {
  opacity: 0.22;
}

.page-hero-content {
  padding-block: calc(var(--header) + 42px) 64px;
}

.about-page {
  background: #fff;
}

.about-page .container {
  width: min(1180px, calc(100% - 48px));
}

.about-hero {
  padding-block: calc(var(--header) + 74px) 84px;
  background:
    linear-gradient(135deg, rgba(246, 247, 244, 0.96), rgba(255, 255, 255, 0.98)),
    linear-gradient(90deg, rgba(189, 73, 53, 0.08), rgba(47, 111, 94, 0.08));
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
}

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

.about-hero h1 {
  max-width: 780px;
  margin: 0 0 20px;
  font-size: clamp(56px, 4.7vw, 64px);
  line-height: 1.08;
  color: var(--ink);
  text-wrap: balance;
}

.about-hero .lead {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.about-actions {
  margin-top: 30px;
}

.about-hero-note {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid rgba(216, 220, 215, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 40px rgba(23, 26, 31, 0.07);
}

.about-hero-note strong {
  font-size: 18px;
}

.about-hero-note span {
  color: var(--muted);
  line-height: 1.55;
}

.about-page .section {
  padding-block: clamp(72px, 7vw, 96px);
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.about-copy {
  max-width: 620px;
}

.about-copy h2,
.about-section-heading h2,
.about-trust-panel h2,
.about-final-cta h2 {
  max-width: 760px;
  font-size: clamp(36px, 3.2vw, 44px);
  line-height: 1.12;
  text-wrap: balance;
}

.about-copy p:not(.eyebrow),
.about-final-cta p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.about-media {
  margin: 0;
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(23, 26, 31, 0.1);
}

.about-media figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.about-section-heading {
  margin-bottom: 28px;
}

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

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

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

.about-card {
  min-width: 0;
  height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(23, 26, 31, 0.055);
}

.about-category-section .about-card {
  background: #f8f9f6;
}

.about-card h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2vw, 26px);
  line-height: 1.2;
}

.about-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.about-category-card .text-link {
  display: inline-flex;
  margin-top: 18px;
}

.about-trust-section {
  background: #171a1f;
  color: #fff;
}

.about-trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.about-trust-panel .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.about-trust-panel h2 {
  color: #fff;
}

.about-trust-list {
  display: grid;
  gap: 14px;
}

.about-trust-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
}

.about-trust-item span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--red);
}

.about-trust-item span::before {
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
  transform: rotate(-45deg) translate(1px, -1px);
}

.about-trust-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.55;
}

.about-final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.about-final-cta .button.ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
  color: #fff;
}

.rfq-layout,
.form-grid {
  min-width: 0;
}

@media (max-width: 1180px) {
  h1 {
    font-size: clamp(40px, 5.5vw, 56px);
  }

  .hero h1,
  .page-hero h1,
  .text-hero h1,
  .landing-hero h1 {
    font-size: clamp(38px, 5vw, 56px);
  }

  .hero {
    min-height: 660px;
  }

  .how-work-home h2 {
    font-size: clamp(42px, 4vw, 52px);
  }

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

  .home-products-heading h2 {
    font-size: clamp(32px, 3.6vw, 42px);
  }

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

  .home-product-card,
  .home-product-card:nth-child(4),
  .home-product-card:nth-child(5) {
    grid-column: auto;
  }

  .why-copy h2 {
    font-size: clamp(32px, 3.6vw, 42px);
  }

  .project-examples-home .section-heading h2,
  .home-final-cta h2 {
    font-size: clamp(30px, 3.6vw, 40px);
  }
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 40px, 1180px);
  }

  h1 {
    font-size: clamp(36px, 6.2vw, 48px);
  }

  .hero h1,
  .page-hero h1,
  .text-hero h1,
  .landing-hero h1 {
    font-size: clamp(34px, 6vw, 46px);
  }

  h2 {
    font-size: clamp(28px, 5vw, 40px);
  }

  .hero {
    min-height: 620px;
    padding-block: calc(var(--header) + 42px) 56px;
  }

  .hero-media-grid {
    grid-template-columns: 1fr;
  }

  .hero-media-grid img:not(:first-child) {
    display: none;
  }

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

  .why-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "cards"
      "media";
  }

  .why-media {
    min-height: 300px;
  }

  .why-copy {
    max-width: 760px;
  }

  .why-copy h2 {
    max-width: 720px;
  }

  .project-example-grid {
    grid-template-columns: 1fr;
  }

  .how-work-home {
    padding-block: 72px;
  }

  .how-work-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }

  .how-work-summary p {
    max-width: 720px;
    font-size: 17px;
  }

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

  .home-final-cta .cta-band {
    width: min(100% - 40px, 1180px);
  }

  .home-products .container {
    width: min(100% - 48px, 1180px);
  }

  .home-products-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .home-products-heading > p {
    max-width: 720px;
  }

  .home-products-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-hero {
    padding-block: calc(var(--header) + 54px) 68px;
  }

  .about-hero-grid,
  .about-split,
  .about-trust-panel,
  .about-final-grid {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: clamp(42px, 6vw, 54px);
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  h1 {
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.1;
  }

  .hero h1,
  .page-hero h1,
  .text-hero h1,
  .landing-hero h1 {
    font-size: clamp(32px, 8vw, 40px);
    line-height: 1.12;
  }

  h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  h3 {
    font-size: 20px;
  }

  .lead {
    font-size: 17px;
  }

  .section {
    padding-block: 52px;
  }

  .how-work-home {
    padding-block: 58px;
  }

  .how-work-home .container {
    gap: 40px;
  }

  .how-work-home h2 {
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.12;
  }

  .section-heading {
    display: grid;
    gap: 14px;
  }

  .hero {
    min-height: 600px;
    padding-block: calc(var(--header) + 34px) 46px;
  }

  .hero-actions,
  .section-actions {
    align-items: stretch;
    gap: 10px;
  }

  .hero-actions .button,
  .section-actions .button,
  .section-actions .button.ghost {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    gap: 8px;
  }

  .trust-grid,
  .service-grid,
  .benefit-grid,
  .process-grid,
  .trust-card-grid {
    grid-template-columns: 1fr;
  }

  .home-process-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-process-grid .process-step {
    padding: 20px;
  }

  .how-work-actions .button {
    width: 100%;
  }

  .home-products {
    padding-block: 62px;
  }

  .home-products .container {
    width: min(100% - 40px, 1180px);
  }

  .home-products-heading {
    margin-bottom: 40px;
  }

  .home-products-heading h2 {
    font-size: clamp(30px, 8vw, 36px);
    line-height: 1.12;
  }

  .home-products-heading > p {
    font-size: 17px;
    line-height: 1.56;
  }

  .home-products-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-product-card {
    border-radius: 18px;
  }

  .home-product-card .service-card-media {
    min-height: 0;
    max-height: none;
  }

  .home-product-card .service-card-body {
    padding: 22px;
  }

  .home-products-cta {
    margin-top: 30px;
    padding: 20px;
    border-radius: 16px;
  }

  .home-products-cta .section-actions,
  .home-products-cta .button {
    width: 100%;
  }

  .service-card-body,
  .benefit-card {
    padding: 20px;
  }

  .why-media {
    min-height: 220px;
  }

  .why-copy h2,
  .project-examples-home .section-heading h2,
  .home-final-cta h2 {
    font-size: clamp(30px, 8vw, 36px);
    line-height: 1.14;
  }

  .why-copy > p:not(.eyebrow),
  .project-card dd,
  .home-final-cta p {
    font-size: 16px;
  }

  .project-card {
    padding: 22px;
    border-radius: 10px;
  }

  .home-final-cta {
    padding-block: 56px;
  }

  .home-final-cta .cta-band {
    width: min(100% - 32px, 1180px);
    padding: 24px;
    border-radius: 18px;
  }

  .home-final-cta .section-actions,
  .home-final-cta .button {
    width: 100%;
  }

  .page-hero {
    min-height: 420px;
  }

  .page-hero-content {
    padding-block: calc(var(--header) + 34px) 52px;
  }

  .about-page .container {
    width: min(100% - 32px, 1180px);
  }

  .about-page .section {
    padding-block: 56px;
  }

  .about-hero {
    padding-block: calc(var(--header) + 36px) 58px;
  }

  .about-hero h1 {
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.12;
  }

  .about-hero .lead,
  .about-copy p:not(.eyebrow),
  .about-final-cta p {
    font-size: 16px;
  }

  .about-copy h2,
  .about-section-heading h2,
  .about-trust-panel h2,
  .about-final-cta h2 {
    font-size: clamp(30px, 8vw, 36px);
  }

  .about-card-grid-2,
  .about-card-grid-4 {
    grid-template-columns: 1fr;
  }

  .about-card,
  .about-hero-note,
  .about-trust-item {
    padding: 20px;
  }

  .about-media img {
    aspect-ratio: 4 / 3.2;
  }

  .about-final-grid .button {
    width: 100%;
  }
}



/* Product detail page visual refinements. */
.product-detail-page .page-hero {
  min-height: clamp(500px, 62vh, 620px);
  align-items: center;
  background: #17232b;
}

.product-detail-page .page-hero > img {
  opacity: 1;
  filter: brightness(0.94) contrast(1.06) saturate(1.04);
  transform: scale(1.01);
}

.product-detail-page .page-hero::after {
  background:
    linear-gradient(90deg, rgba(13, 24, 33, 0.76) 0%, rgba(13, 24, 33, 0.5) 42%, rgba(13, 24, 33, 0.18) 100%),
    linear-gradient(180deg, rgba(13, 24, 33, 0.18) 0%, rgba(13, 24, 33, 0.36) 100%);
}

.product-detail-page .page-hero-content {
  max-width: 1060px;
  padding-block: calc(var(--header) + 56px) 68px;
}

.product-detail-page .page-hero h1 {
  max-width: 980px;
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.1;
}

.product-detail-page .page-hero .lead {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.58;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.product-detail-page .rfq-actions {
  gap: 14px;
}

.product-detail-page .rfq-actions .button {
  min-height: 48px;
  white-space: normal;
  text-align: center;
}

.product-detail-page .section {
  padding-block: clamp(54px, 6vw, 78px);
}

.product-detail-page .section-heading {
  align-items: start;
  gap: clamp(20px, 3.6vw, 40px);
  margin-bottom: clamp(24px, 3.4vw, 36px);
}

.product-detail-page .section-heading h2,
.product-detail-page .split-copy h2 {
  max-width: 760px;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.16;
}

.product-detail-page .section-intro,
.product-detail-page .split-copy p:not(.eyebrow),
.product-detail-page .info-panel p {
  max-width: 760px;
  line-height: 1.62;
}

.product-detail-page .two-column,
.product-detail-page .split {
  gap: clamp(26px, 3.8vw, 48px);
}

.product-detail-page .landing-grid,
.product-detail-page .entity-grid,
.product-detail-page .case-grid {
  gap: clamp(20px, 2.6vw, 30px);
}

.product-detail-page .info-panel,
.product-detail-page .entity-card,
.product-detail-page .case-card {
  min-width: 0;
  border-radius: 10px;
}

.product-detail-page .info-panel {
  padding: clamp(20px, 2.4vw, 28px);
}

.product-detail-page .info-panel h2 {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.18;
}

.product-rfq-scope {
  background: #f6f8fa;
}

.product-rfq-scope .section-heading {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  align-items: start;
}

.rfq-scope-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(16px, 2vw, 22px);
}

.rfq-scope-grid-inline {
  margin-top: 24px;
}

.rfq-scope-card {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: start;
  gap: 13px;
  min-width: 0;
  min-height: 104px;
  padding: clamp(18px, 1.9vw, 22px);
  border: 1px solid rgba(43, 58, 67, 0.13);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 32px rgba(22, 34, 43, 0.055);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.rfq-scope-card:hover {
  transform: translateY(-2px);
  border-color: rgba(39, 77, 99, 0.28);
  box-shadow: 0 18px 38px rgba(22, 34, 43, 0.08);
}

.rfq-scope-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(39, 77, 99, 0.12);
  color: #274d63;
  font-weight: 800;
  letter-spacing: 0;
}

.rfq-scope-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.28;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.rfq-scope-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.product-detail-page .check-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 14px;
  min-width: 0;
}

.product-detail-page .check-list li {
  min-width: 0;
  align-items: flex-start;
  padding: 15px 16px;
  border: 1px solid rgba(43, 58, 67, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  overflow-wrap: normal;
  word-break: normal;
}

.product-detail-page .check-list li span {
  min-width: 0;
}

.product-detail-page .quick-rfq-strip {
  background: #17232b;
}

@media (max-width: 1180px) {
  .product-detail-page .page-hero h1 {
    font-size: clamp(38px, 5vw, 52px);
  }
}

@media (max-width: 900px) {
  .product-detail-page .product-rfq-scope .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .product-detail-page .two-column,
  .product-detail-page .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .product-detail-page .page-hero {
    min-height: auto;
  }

  .product-detail-page .page-hero::after {
    background:
      linear-gradient(90deg, rgba(13, 24, 33, 0.78) 0%, rgba(13, 24, 33, 0.54) 100%),
      linear-gradient(180deg, rgba(13, 24, 33, 0.16) 0%, rgba(13, 24, 33, 0.42) 100%);
  }

  .product-detail-page .page-hero-content {
    padding-block: calc(var(--header) + 34px) 56px;
  }

  .product-detail-page .page-hero h1 {
    font-size: clamp(32px, 9.5vw, 38px);
    line-height: 1.12;
  }

  .product-detail-page .page-hero .lead {
    font-size: 16px;
    -webkit-line-clamp: 4;
  }

  .product-detail-page .rfq-actions .button {
    width: 100%;
  }

  .product-detail-page .section {
    padding-block: 48px;
  }

  .product-detail-page .section-heading h2,
  .product-detail-page .split-copy h2 {
    font-size: clamp(26px, 7.2vw, 34px);
  }

  .product-detail-page .check-list,
  .product-detail-page .rfq-scope-grid {
    grid-template-columns: 1fr;
  }

  .rfq-scope-card {
    grid-template-columns: 36px minmax(0, 1fr);
    min-height: 0;
    padding: 18px;
  }

  .rfq-scope-number {
    width: 36px;
    height: 36px;
  }
}



/* Final visual polish for footer and image/text balance. */
.split-media img,
.about-media img {
  min-height: 0;
  max-height: 460px;
}

.product-detail-page .split-media,
.product-detail-page .about-media {
  max-width: 560px;
}

.product-detail-page .split-media img,
.product-detail-page .about-media img {
  aspect-ratio: 16 / 10;
  min-height: 0;
  max-height: 420px;
}

.contact-email-action {
  cursor: copy;
}

.site-footer .contact-email-action {
  cursor: copy;
}

.product-detail-page .b2b-split h2,
.product-detail-page .b2b-two-column h2,
.product-detail-page .cta-band h2,
body[data-page-type="landing"] .section-heading h2,
body[data-page-type="landing"] .split-copy h2,
body[data-page-type="landing"] .cta-band h2,
.about-page .about-copy h2,
.about-page .about-section-heading h2,
.about-page .about-trust-panel h2,
.about-page .about-final-cta h2,
.two-column h2 {
  max-width: 760px;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.16;
  text-wrap: balance;
}

.product-detail-page .b2b-final-cta h2 {
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.15;
}

body[data-page-type="landing"] .info-panel h2,
.entity-card h2,
.rfq-aside h2 {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.18;
}

.site-footer .contact-icon {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: #d8e7ee;
  font-weight: 800;
}

.site-footer .contact-icon-email,
.site-footer .contact-icon-whatsapp,
.site-footer .contact-icon-linkedin,
.site-footer .contact-icon-facebook {
  color: #d8e7ee;
}

.site-footer .contact-item {
  min-height: 36px;
}

.site-footer .contact-text {
  line-height: 1.45;
}

.sticky-actions {
  right: max(24px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  gap: 10px;
  z-index: 70;
}

.sticky-actions .button {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(22, 34, 43, 0.14);
}

.nav-link:hover,
.nav-dropdown > summary:hover {
  color: #274d63;
  border-color: rgba(39, 77, 99, 0.16);
  background: rgba(39, 77, 99, 0.055);
}

.nav-link[aria-current="page"],
.nav-dropdown[data-active="true"] > summary {
  color: #1f3f52;
  border-color: transparent;
  border-radius: 0;
  background: transparent;
  box-shadow: inset 0 -2px 0 #274d63;
}

.dropdown-link[aria-current="page"] {
  color: #1f3f52;
  border-color: transparent;
  background: #eef4f7;
}

.text-hero {
  min-height: clamp(400px, 48vh, 500px);
  align-items: center;
  border-bottom: 1px solid rgba(216, 220, 215, 0.88);
  background:
    linear-gradient(135deg, #f7f9fb 0%, #ffffff 58%),
    linear-gradient(90deg, rgba(39, 77, 99, 0.1), rgba(214, 154, 45, 0.06));
  color: var(--ink);
}

.text-hero::after {
  display: none;
}

.text-hero .page-hero-content {
  max-width: 900px;
  padding-block: calc(var(--header) + 50px) 60px;
}

.text-hero .eyebrow {
  color: #7a621f;
}

.text-hero h1 {
  max-width: 820px;
  color: #17232b;
  font-size: clamp(38px, 3.5vw, 52px);
  line-height: 1.12;
  text-shadow: none;
}

.text-hero .lead {
  max-width: 760px;
  color: var(--muted);
  text-shadow: none;
}

.text-hero .button.ghost {
  border-color: rgba(39, 77, 99, 0.28);
  background: #fff;
  color: #17232b;
}

.text-hero .button.ghost:hover {
  border-color: #274d63;
  background: #eef4f7;
  color: #17232b;
}

main > .section .entity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 26px);
}

main > .section .entity-card {
  min-width: 0;
  min-height: 176px;
  padding: clamp(22px, 2.3vw, 28px);
  border: 1px solid rgba(43, 58, 67, 0.12);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(22, 34, 43, 0.055);
}

main > .section .entity-card h2 {
  margin-bottom: 10px;
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.18;
}

.about-hero {
  padding-block: calc(var(--header) + 56px) 68px;
  border-bottom: 1px solid rgba(216, 220, 215, 0.88);
  background:
    linear-gradient(135deg, #f7f9fb 0%, #fff 64%),
    linear-gradient(90deg, rgba(39, 77, 99, 0.1), rgba(214, 154, 45, 0.06));
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
}

.about-hero h1 {
  max-width: 760px;
  font-size: clamp(36px, 3.4vw, 50px);
  line-height: 1.14;
}

.about-hero .lead {
  max-width: 760px;
  font-size: clamp(17px, 1.45vw, 19px);
  line-height: 1.62;
}

.about-hero-note {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid rgba(39, 77, 99, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 34px rgba(22, 34, 43, 0.07);
}

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

.about-card {
  border-radius: 10px;
}

.about-media img {
  max-height: 430px;
}

.b2b-quality-section .b2b-info-card p {
  margin-top: 0;
}

@media (max-width: 900px) {
  .split,
  .two-column,
  .about-split {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .split-media,
  .about-media,
  .product-detail-page .split-media,
  .product-detail-page .about-media {
    max-width: 620px;
  }

  .split-media img,
  .about-media img,
  .product-detail-page .split-media img,
  .product-detail-page .about-media img {
    max-height: 360px;
  }

  main > .section .entity-grid,
  .about-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .split,
  .two-column,
  .about-split {
    gap: 28px;
  }

  .split-media img,
  .about-media img,
  .product-detail-page .split-media img,
  .product-detail-page .about-media img {
    max-height: 320px;
  }

  .sticky-actions {
    left: 14px;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .sticky-actions .button {
    width: 100%;
    min-height: 42px;
    padding-inline: 8px;
    font-size: 13px;
  }

  .text-hero {
    min-height: auto;
  }

  .text-hero .page-hero-content,
  .about-hero {
    padding-block: calc(var(--header) + 34px) 48px;
  }

  .text-hero h1,
  .about-hero h1 {
    font-size: clamp(31px, 8.2vw, 38px);
  }

  main > .section .entity-grid {
    grid-template-columns: 1fr;
  }

  main > .section .entity-card {
    min-height: 0;
    padding: 20px;
  }

  .product-detail-page .b2b-split h2,
  .product-detail-page .b2b-two-column h2,
  .product-detail-page .cta-band h2,
  body[data-page-type="landing"] .section-heading h2,
  body[data-page-type="landing"] .split-copy h2,
  body[data-page-type="landing"] .cta-band h2,
  .about-page .about-copy h2,
  .about-page .about-section-heading h2,
  .about-page .about-trust-panel h2,
  .about-page .about-final-cta h2,
  .two-column h2 {
    font-size: clamp(26px, 7.2vw, 34px);
  }
}
